You've already forked Atomcms-edit
23 lines
462 B
PHP
Executable File
23 lines
462 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class RadioSongRequestFormRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'artist' => ['required', 'string', 'max:50'],
|
|
'title' => ['required', 'string', 'max:50'],
|
|
'message' => ['nullable', 'string', 'max:100'],
|
|
];
|
|
}
|
|
}
|