invoiceninja/app/Http/Requests/CreateProposalRequest.php
2019-01-30 22:25:07 +11:00

31 lines
545 B
PHP

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