invoiceninja/app/Http/Requests/CreateProductRequest.php
2019-01-30 22:00:26 +11:00

31 lines
542 B
PHP
Executable File

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