2020-03-29 01:03:52 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use App\Contracts\FormRequest;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdatePageRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => [
|
|
|
|
'required',
|
|
|
|
Rule::unique('pages')->ignore($this->id, 'id'),
|
|
|
|
],
|
2020-06-11 20:27:38 +08:00
|
|
|
'body' => 'nullable',
|
2020-03-29 01:03:52 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|