invoiceninja/app/Http/Requests/CreateProposalRequest.php
2018-01-31 16:40:47 +02:00

30 lines
558 B
PHP

<?php
namespace App\Http\Requests;
class CreateProposalRequest extends ProposalRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return $this->user()->can('create', ENTITY_PROPOSAL);
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'quote_id' => 'required',
'template_id' => 'required',
];
}
}