check(); } /** * Get the validation rules that apply to the request. * * @return array|string> */ public function rules(): array { return [ 'title' => ['required', 'string', 'max:255','min:5'], 'body' => ['nullable', 'string',], 'active' => ['nullable', 'boolean'], 'clip' => ['nullable', 'mimes:mp4', 'max:15728640'], 'cover' => ['nullable', 'image', 'mimes:jpeg,png,jpg,gif,svg', 'max:2048'], ]; } }