invoiceninja/app/Http/Requests/CreateCreditRequest.php

32 lines
581 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
2019-01-30 22:00:26 +11:00
use App\Models\Credit;
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()
{
2019-01-30 22:00:26 +11:00
return $this->user()->can('create', Credit::class);
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',
];
}
}