ok
Direktori : /home2/selectio/www/fms-worksuite/app/Http/Requests/TimeLogs/ |
Current File : //home2/selectio/www/fms-worksuite/app/Http/Requests/TimeLogs/StartTimer.php |
<?php namespace App\Http\Requests\TimeLogs; use App\Http\Requests\CoreRequest; class StartTimer extends CoreRequest { /** * 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 */ public function rules() { return [ 'task_id' => 'required_without:create_task', 'memo' => 'required' ]; } public function messages() { return [ 'task_id.required_without' => __('messages.fieldBlank'), ]; } }