1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Requests/CreateClientRequest.php

33 lines
720 B
PHP
Raw Normal View History

2016-04-28 14:16:33 +02:00
<?php namespace App\Http\Requests;
2015-10-28 20:22:07 +01:00
2016-04-28 14:16:33 +02:00
class CreateClientRequest extends ClientRequest
2015-10-28 20:22:07 +01:00
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2016-04-28 14:16:33 +02:00
return $this->user()->can('create', ENTITY_CLIENT);
2015-10-28 20:22:07 +01:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
2017-01-03 20:48:40 +01:00
$rules = [
2015-10-28 20:22:07 +01:00
'contacts' => 'valid_contacts',
];
2017-01-03 20:48:40 +01:00
if ($this->user()->account->client_number_counter) {
$rules['id_number'] = 'unique:clients,id_number,,id,account_id,' . $this->user()->account_id;
}
return $rules;
2015-10-28 20:22:07 +01:00
}
}