invoiceninja/app/Http/Requests/Invoice/UpdateInvoiceRequest.php

25 lines
415 B
PHP
Raw Normal View History

2019-04-15 10:10:54 +10: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 15:28:30 +10:00
public function authorize() : bool
2019-04-15 10:10:54 +10:00
{
return auth()->user()->can('edit', $this->invoice);
2019-04-15 10:10:54 +10:00
}
}