2023-03-16 05:20:38 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\ClientPortal\PrePayments;
|
|
|
|
|
2024-01-13 23:24:30 +01:00
|
|
|
use App\Utils\Number;
|
2023-03-16 05:20:38 +01:00
|
|
|
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()
|
|
|
|
{
|
2024-08-22 08:45:06 +02:00
|
|
|
|
2024-06-15 08:18:33 +02:00
|
|
|
auth()->guard('contact')->user()->loadMissing(['company']);
|
|
|
|
|
|
|
|
auth()->guard('contact')->user()->loadMissing(['client' => function ($query) {
|
|
|
|
$query->without('gateway_tokens', 'documents', 'contacts.company', 'contacts'); // Exclude 'grandchildren' relation of 'client'
|
|
|
|
}]);
|
|
|
|
|
2024-06-16 06:35:56 +02:00
|
|
|
return (bool)(auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_INVOICES);
|
2023-03-16 05:20:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'notes' => 'required|bail|',
|
2023-04-03 23:15:19 +02:00
|
|
|
'amount' => 'required|bail|gte:minimum_amount|numeric',
|
2023-03-22 02:36:28 +01:00
|
|
|
'minimum_amount' => '',
|
2023-03-16 05:20:38 +01:00
|
|
|
];
|
|
|
|
}
|
2023-03-22 02:36:28 +01:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2024-01-13 23:24:30 +01:00
|
|
|
$input['amount'] = Number::parseFloat($input['amount'], auth()->guard('contact')->user()->client->currency()->precision ?? 2);
|
2023-03-22 02:36:28 +01:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
|
|
|
|
}
|
2023-03-16 05:20:38 +01:00
|
|
|
}
|