36 lines
964 B
PHP
36 lines
964 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class StoreLedgerRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
$dynamic = $this->route('dynamic');
|
|
|
|
return $dynamic && $this->user()->can('view', $dynamic);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, ValidationRule|array|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'rules' => ['nullable', 'string'],
|
|
'alignment' => ['required', 'string', 'in:positive,neutral,negative'],
|
|
'media' => ['nullable', 'array'],
|
|
'media.*' => ['file', 'mimes:jpg,jpeg,png,gif,mp4,mov,avi,webm', 'max:20480'],
|
|
];
|
|
}
|
|
}
|