2021-06-17 14:28:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-21 07:10:20 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-06-17 14:28:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\ClientPortal\Credits;
|
|
|
|
|
|
|
|
use App\Http\ViewComposers\PortalComposer;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class ShowCreditsRequest extends FormRequest
|
|
|
|
{
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return auth('contact')->user()->company->enabled_modules & PortalComposer::MODULE_CREDITS;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|