mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
34 lines
680 B
PHP
34 lines
680 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
class CreateCustomerRequest extends CustomerRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return $this->user()->can('create', ENTITY_CUSTOMER);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
$rules = [
|
|
'token' => 'required',
|
|
'client_id' => 'required',
|
|
'contact_id' => 'required',
|
|
'payment_method.source_reference' => 'required',
|
|
];
|
|
|
|
return $rules;
|
|
}
|
|
}
|