芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/lavishbdlifestyle.com/app/Http/Requests/MeasurementPointRequest.php
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class MeasurementPointRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules() { return [ 'name' => ['required', 'max:191'] ]; } /** * Get the error messages for the defined validation rules. * * @return array */ public function messages() { return [ 'name.required' => translate('Measurement Point name is required'), 'name.max' => translate('Max 191 characters for Measurement Point name'), ]; } }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage