/
home
/
sditechnicalteam
/
public_html
/
app
/
Http
/
Requests
/
EmployeeShift
/
File Upload :
llllll
Current File: /home/sditechnicalteam/public_html/app/Http/Requests/EmployeeShift/StoreEmployeeShift.php
<?php namespace App\Http\Requests\EmployeeShift; use Illuminate\Foundation\Http\FormRequest; class StoreEmployeeShift 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 */ public function rules() { $data = []; $data['office_start_time'] = 'required'; $data['office_end_time'] = 'required'; $data['shift_short_code'] = 'required'; $data['color'] = 'required'; $data['late_mark_duration'] = 'required | integer | min:0'; $data['clockin_in_day'] = 'required | integer | min:0'; if (!request()->has('office_open_days')) { $data['office_open_days'] = 'required'; } return $data; } }
Copyright ©2k19 -
Hexid
|
Tex7ure