21 lines
342 B
PHP
21 lines
342 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\admin;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class UpdateFeedbackStatusRequest extends FormRequest
|
||
|
{
|
||
|
public function authorize(): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return [
|
||
|
'name' => 'required|string|max:255',
|
||
|
];
|
||
|
}
|
||
|
}
|