whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
app
/
Http
/
Requests
/
Leaves
/
Upload File:
files >> //home/kckglobal/www/portal/app/Http/Requests/Leaves/StoreLeave.php
<?php namespace App\Http\Requests\Leaves; use App\Http\Requests\CoreRequest; class StoreLeave 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 [ 'user_id' => 'required', 'leave_type_id' => 'required', 'duration' => 'required', 'leave_date' => 'required_if:duration,single', 'multi_date' => 'required_if:duration,multiple', 'reason' => 'required' ]; } public function attributes() { return [ 'leave_type_id' => __('modules.leaves.leaveType'), ]; } }
Copyright ©2021 || Defacer Indonesia