mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
33 lines
719 B
PHP
33 lines
719 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|',
|
|
];
|
|
}
|
|
}
|