File "StoreRequest.php"
Full Path: /home/isoftco/public_html/hrm/app/Http/Requests/Admin/Department/StoreRequest.php
File size: 890 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Http\Requests\Admin\Department;
use App\Http\Requests\AdminCoreRequest;
use Illuminate\Support\Facades\Lang;
class StoreRequest extends AdminCoreRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return admin();
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|unique:department,name,:id,id,company_id,' . $this->companyId,
"designation.0" => 'required',
];
}
public function messages()
{
return [
'name.required' => Lang::get('messages.nameRequired'),
'designation.0.required' => Lang::get('messages.designation0required'),
];
}
}