Файловый менеджер - Редактировать - /home/kckglobal/public_html/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; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка