D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
lactobokashi.com
/
app
/
Http
/
Requests
/
Filename :
NotificationRequest.php
back
Copy
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class NotificationRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() : bool { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() : array { return [ 'notification_fcm_secret_key' => ['required', 'string', 'max:500'], 'notification_fcm_public_vapid_key' => ['required', 'string', 'max:900'], 'notification_fcm_api_key' => ['required', 'string', 'max:500'], 'notification_fcm_auth_domain' => ['required', 'string', 'max:500'], 'notification_fcm_project_id' => ['required', 'string', 'max:500'], 'notification_fcm_storage_bucket' => ['required', 'string', 'max:500'], 'notification_fcm_messaging_sender_id' => ['required', 'string', 'max:500'], 'notification_fcm_app_id' => ['required', 'string', 'max:500'], 'notification_fcm_measurement_id' => ['required', 'string', 'max:500'], ]; } }