2019-10-22 13:27:03 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-22 13:27:03 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-22 13:27:03 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-10-22 13:27:03 +02:00
|
|
|
*/
|
|
|
|
|
2021-06-17 14:24:33 +02:00
|
|
|
namespace App\Http\Requests\ClientPortal\RecurringInvoices;
|
2019-10-22 13:27:03 +02:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2021-06-17 14:24:33 +02:00
|
|
|
use App\Http\ViewComposers\PortalComposer;
|
2019-10-22 13:27:03 +02:00
|
|
|
|
|
|
|
class ShowRecurringInvoiceRequest extends Request
|
|
|
|
{
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2022-07-01 18:55:11 +02:00
|
|
|
return auth()->guard('contact')->user()->client->id == $this->recurring_invoice->client_id
|
2022-02-16 03:24:10 +01:00
|
|
|
&& auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_RECURRING_INVOICES;
|
2021-06-17 14:24:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
2019-10-22 13:27:03 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|