2019-08-29 06:07:04 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-08-29 06:07:04 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-08-29 06:07:04 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-08-29 06:07:04 +02:00
|
|
|
*/
|
|
|
|
|
2021-06-17 14:43:14 +02:00
|
|
|
namespace App\Http\Requests\ClientPortal\Invoices;
|
2019-08-29 06:07:04 +02:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2021-06-17 14:43:14 +02:00
|
|
|
use App\Http\ViewComposers\PortalComposer;
|
2019-08-29 06:07:04 +02:00
|
|
|
|
|
|
|
class ShowInvoiceRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
2020-04-30 13:45:47 +02:00
|
|
|
{
|
2022-02-16 03:24:10 +01:00
|
|
|
return auth()->guard('contact')->user()->client_id == $this->invoice->client_id
|
|
|
|
&& auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_INVOICES;
|
2019-08-29 06:07:04 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|