1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Requests/Invoice/UpdateInvoiceRequest.php

51 lines
896 B
PHP
Raw Normal View History

2019-04-15 02:10:54 +02:00
<?php
namespace App\Http\Requests\Invoice;
use App\Http\Requests\Request;
use Illuminate\Support\Facades\Log;
use Illuminate\Validation\Rule;
class UpdateInvoiceRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2019-04-16 07:28:30 +02:00
public function authorize() : bool
2019-04-15 02:10:54 +02:00
{
2019-04-16 07:28:30 +02:00
return auth()->user()->can('edit', $this->invoice);
2019-04-15 02:10:54 +02:00
}
public function rules()
{
2019-04-16 07:28:30 +02:00
if (! $this->entity()) {
return [];
}
$invoiceId = $this->entity()->id;
$rules = [
'client' => 'required',
'discount' => 'positive',
'invoice_date' => 'required',
];
return $rules;
}
public function sanitize()
{
//do post processing of invoice request here, ie. invoice_items
2019-04-15 02:10:54 +02:00
}
public function messages()
{
}
}