Files
2026-06-06 16:38:01 +03:30

22 lines
620 B
PHP

<?php
namespace App\Http\Controllers;
use App\Models\BellSound;
class BellSoundController extends CatalogController
{
protected function modelClass(): string
{
return BellSound::class;
}
protected function fileFields(): array
{
return [
'sound' => ['column' => 'sound_path', 'folder' => 'bells/sounds', 'rules' => 'nullable|file|extensions:mp3,wav,ogg,flac,aac,m4a,opus,mpga,wma|max:51200'],
'image' => ['column' => 'image_path', 'folder' => 'bells/images', 'rules' => 'nullable|file|extensions:jpg,jpeg,png,gif,webp,bmp,svg|max:8192'],
];
}
}