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

47 lines
1.0 KiB
PHP
Raw Normal View History

2019-04-03 05:22:13 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-03 05:22:13 +02:00
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 [
2019-04-04 00:40:56 +02:00
'product_key' => 'unique:products,product_key,'.$this->product->id.',id,company_id,'.auth()->user()->companyId(),
2019-07-04 06:31:01 +02:00
'cost' => 'numeric',
'price' => 'numeric',
2019-09-04 14:01:19 +02:00
'quantity' => 'numeric',
2019-04-03 05:22:13 +02:00
];
}
}