2016-05-01 13:31:10 +02:00
|
|
|
<?php namespace App\Http\Requests;
|
2016-02-03 15:03:56 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
|
2016-02-03 15:03:56 +01:00
|
|
|
|
2016-05-02 15:12:37 +02:00
|
|
|
class CreateTaxRateRequest extends TaxRateRequest
|
2016-02-03 15:03:56 +01:00
|
|
|
{
|
|
|
|
// Expenses
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2016-05-02 15:12:37 +02:00
|
|
|
return $this->user()->can('create', ENTITY_TAX_RATE);
|
2016-02-03 15:03:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => 'required',
|
|
|
|
'rate' => 'required',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|