mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 07:02:34 +01:00
35 lines
721 B
PHP
35 lines
721 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\ClientPortal\PrePayments;
|
||
|
|
||
|
use App\Http\ViewComposers\PortalComposer;
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
||
|
class StorePrePaymentRequest extends FormRequest
|
||
|
{
|
||
|
/**
|
||
|
* Determine if the user is authorized to make this request.
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
return auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_INVOICES;
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
'notes' => 'required|bail|',
|
||
|
'amount' => 'required|bail|',
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|