whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
app
/
Http
/
Requests
/
Milestone
/
Upload File:
files >> //home/kckglobal/www/portal/app/Http/Requests/Milestone/StoreMilestone.php
<?php namespace App\Http\Requests\Milestone; use Illuminate\Foundation\Http\FormRequest; class StoreMilestone 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() { $setting = company(); $rules = [ 'project_id' => 'required', 'milestone_title' => 'required', 'summary' => 'required' ]; if ($this->end_date !== null) { $rules['start_date'] = 'required|date_format:"' . $setting->date_format . '"'; } if ($this->start_date !== null) { $rules['end_date'] = 'required'; } if ($this->start_date > $this->end_date) { $rules['end_date'] = 'date_format:"' . $setting->date_format . '"|after_or_equal:start_date'; } if ($this->cost != '' && $this->cost > 0) { $rules['currency_id'] = 'required'; } return $rules; } }
Copyright ©2021 || Defacer Indonesia