Files
back-meditation/app/Http/Controllers/BackgroundSoundController.php
T
2026-06-03 00:55:40 +03:30

22 lines
591 B
PHP

<?php
namespace App\Http\Controllers;
use App\Models\BackgroundSound;
class BackgroundSoundController extends CatalogController
{
protected function modelClass(): string
{
return BackgroundSound::class;
}
protected function fileFields(): array
{
return [
'sound' => ['column' => 'sound_path', 'folder' => 'background-sounds/sounds', 'rules' => 'nullable|mimes:mp3,wav,ogg,flac|max:102400'],
'image' => ['column' => 'image_path', 'folder' => 'background-sounds/images', 'rules' => 'nullable|image|max:8192'],
];
}
}