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

31 lines
509 B
PHP

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