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

22 lines
364 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',
];
}
}