2021-06-17 14:24:33 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-06-17 14:24:33 +02:00
|
|
|
*
|
2021-06-21 07:10:20 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-06-17 14:24:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\ClientPortal\RecurringInvoices;
|
|
|
|
|
|
|
|
use App\Http\ViewComposers\PortalComposer;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class ShowRecurringInvoicesRequest extends FormRequest
|
|
|
|
{
|
|
|
|
public function authorize()
|
|
|
|
{
|
2022-02-16 03:24:10 +01:00
|
|
|
return auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_RECURRING_INVOICES;
|
2021-06-17 14:24:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|