invoiceninja/app/Http/Requests/Product/UpdateProductRequest.php
2019-04-03 14:22:13 +11:00

35 lines
676 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' => 'required|unique:products,product_key,'.$this->product->id.',id,company_id,'.auth()->user()->companyId(),
];
}
}