37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Setting;
|
|
|
|
use App\Abstracts\Http\FormRequest;
|
|
|
|
class Currency extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
// Check if store or update
|
|
if ($this->getMethod() == 'PATCH') {
|
|
$id = is_numeric($this->currency) ? $this->currency : $this->currency->getAttribute('id');
|
|
} else {
|
|
$id = null;
|
|
}
|
|
|
|
// Get company id
|
|
$company_id = (int) $this->request->get('company_id');
|
|
|
|
return [
|
|
'name' => 'required|string',
|
|
'code' => 'required|string|unique:currencies,NULL,' . $id . ',id,company_id,' . $company_id . ',deleted_at,NULL',
|
|
'rate' => 'required|gt:0',
|
|
'enabled' => 'integer|boolean',
|
|
'default_currency' => 'nullable|boolean',
|
|
'symbol_first' => 'nullable|boolean',
|
|
'thousands_separator' => 'different:decimal_mark',
|
|
];
|
|
}
|
|
}
|