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

31 lines
531 B
PHP

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