2016-04-28 14:16:33 +02:00
|
|
|
<?php namespace App\Http\Requests;
|
2015-10-28 20:22:07 +01:00
|
|
|
|
2016-05-01 14:04:55 +02:00
|
|
|
class CreateCreditRequest extends CreditRequest
|
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_CREDIT);
|
2015-10-28 20:22:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'client' => 'required',
|
|
|
|
'amount' => 'required|positive',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|