invoiceninja/app/Http/Requests/UpdateClientRequest.php

33 lines
691 B
PHP
Raw Normal View History

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