applicant-site/app/Http/Requests/admin/UpdateNewsRequest.php

23 lines
404 B
PHP
Raw Normal View History

2024-03-20 13:09:39 +03:00
<?php
namespace App\Http\Requests\admin;
use Illuminate\Foundation\Http\FormRequest;
class UpdateNewsRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'name' => 'required|string|max:255',
'text' => 'string',
2024-06-11 10:37:39 +03:00
'photo' => 'required|file',
2024-03-20 13:09:39 +03:00
];
}
}