%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/app/Http/Requests/Expenses/ |
Upload File : |
<?php
namespace App\Http\Requests\Expenses;
use App\Models\BankAccount;
use App\Http\Requests\CoreRequest;
use App\Traits\CustomFieldsRequestTrait;
class StoreExpense extends CoreRequest
{
use CustomFieldsRequestTrait;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
$rules = [
'item_name' => 'required',
'purchase_date' => 'required',
'user_id' => 'required',
'price' => 'required|numeric',
'currency_id' => 'required'
];
$rules = $this->customFieldRules($rules);
if (request('bank_account_id') != '') {
$bankBalance = BankAccount::findOrFail(request('bank_account_id'));
$rules['price'] = 'required|numeric|max:'.$bankBalance->bank_balance;
}
return $rules;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function attributes()
{
$attributes = [];
$attributes = $this->customFieldsAttributes($attributes);
return $attributes;
}
}