1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01:00
invoiceninja/app/Http/Requests/CreateProposalRequest.php
2018-01-31 14:21:33 +02:00

30 lines
557 B
PHP

<?php
namespace App\Http\Requests;
class CreateProposalRequest extends ProjectRequest
{
/**
* 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',
];
}
}