23 lines
455 B
PHP
23 lines
455 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\admin;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class UpdateFeedbackRequest extends FormRequest
|
||
|
{
|
||
|
public function authorize(): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return [
|
||
|
'contact' => 'required|string|max:255',
|
||
|
'text' => 'string|nullable',
|
||
|
'status_id' => 'required|numeric|exists:feedback_statuses,id',
|
||
|
];
|
||
|
}
|
||
|
}
|