staff, mno, clients, bug fixes
This commit is contained in:
41
app/Http/Requests/UpdateClientRequest.php
Normal file
41
app/Http/Requests/UpdateClientRequest.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class UpdateClientRequest 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()
|
||||
{
|
||||
return [
|
||||
'name' => 'required',
|
||||
'email' => 'required|email',
|
||||
'country' => 'required',
|
||||
'status' => 'required',
|
||||
'currency' => 'required',
|
||||
'auth_user_id' => 'required',
|
||||
'document_one_name' => 'required_with:document_one.*',
|
||||
'document_two_name' => 'required_with:document_two.*',
|
||||
'document_two_name' => 'required_with:document_three.*',
|
||||
'document_one' => 'max:2000|mimes:png,jpg,jpeg,bmp,pdf,doc,docx',
|
||||
'document_three' => 'max:2000|mimes:png,jpg,jpeg,bmp,pdf,doc,docx',
|
||||
'document_three' => 'max:2000|mimes:png,jpg,jpeg,bmp,pdf,doc,docx'
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user