1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00
invoiceninja/app/Http/Requests/Product/UpdateProductRequest.php
2019-04-04 09:40:56 +11:00

35 lines
667 B
PHP

<?php
namespace App\Http\Requests\Product;
use App\Http\Requests\Request;
use App\Models\Product;
use Illuminate\Support\Facades\Log;
class UpdateProductRequest 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()
{
//when updating you need to ignore the column ID
return [
'product_key' => 'unique:products,product_key,'.$this->product->id.',id,company_id,'.auth()->user()->companyId(),
];
}
}