1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/app/Http/Requests/ClientPortal/Credits/ShowCreditRequest.php

34 lines
772 B
PHP
Raw Normal View History

2020-03-23 18:10:42 +01:00
<?php
2021-06-17 14:28:46 +02:00
namespace App\Http\Requests\ClientPortal\Credits;
2020-03-23 18:10:42 +01:00
2021-06-17 14:28:46 +02:00
use App\Http\ViewComposers\PortalComposer;
2020-03-23 18:10:42 +01:00
use Illuminate\Foundation\Http\FormRequest;
class ShowCreditRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return ! $this->credit->is_deleted
2022-02-17 13:07:16 +01:00
&& auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_CREDITS
&& auth()->guard('contact')->user()->client_id === $this->credit->client_id;
2020-03-23 18:10:42 +01:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}