invoiceninja/app/Http/Requests/CreateCreditRequest.php

30 lines
557 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-05-01 15:04:55 +03:00
class CreateCreditRequest extends CreditRequest
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('create', ENTITY_CREDIT);
2015-10-28 21:22:07 +02:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2017-05-30 13:56:51 +03:00
'client_id' => 'required',
2015-10-28 21:22:07 +02:00
'amount' => 'required|positive',
];
}
}