1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Http/Requests/ClientRequest.php
2016-04-30 21:55:15 +03:00

27 lines
485 B
PHP

<?php namespace App\Http\Requests;
class ClientRequest extends BaseRequest {
protected $entityType = ENTITY_CLIENT;
public function entity()
{
return parent::entity()->load('contacts');
}
public function authorize()
{
return $this->user()->can('view', $this->entity());
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [];
}
}