mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
29 lines
558 B
PHP
29 lines
558 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Product;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\Product;
|
|
|
|
class StoreProductRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('create', Product::class);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
return [
|
|
'product_key' => 'required|unique:products,product_key,null,null,company_id,'.auth()->user()->companyId(),
|
|
];
|
|
}
|
|
|
|
|
|
} |