32 lines
764 B
PHP
32 lines
764 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Backend\PageBuilder;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class SetActiveRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool {
|
|
if (Auth::check())
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array {
|
|
return [
|
|
'title' => ['required', 'string', 'max:255'],
|
|
'content' => ['required', 'json']
|
|
];
|
|
}
|
|
}
|