ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
Modules
/
TaxModule
/
app
/
Http
/
Requests
/
Viewing: TaxAddRequest.php
<?php namespace Modules\TaxModule\app\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class TaxAddRequest extends FormRequest { protected $stopOnFirstFailure = true; /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize(): bool { return true; } public function rules(): array { return [ 'name' => 'required|max:50|unique:taxes,name', 'country_code' => 'nullable|max:20|unique:taxes,country_code', 'tax_rate' => 'required|numeric|min:0', ]; } public function messages(): array { return [ 'name.required' => translate('name_is_required!'), 'name.max' => translate('name_must_not_exceed_50_characters!'), 'name.unique' => translate('this_tax_name_already_exists!'), 'country_code.max' => translate('country_code_must_not_exceed_20_characters!'), 'country_code.unique' => translate('this_country_code_already_exists!'), 'tax_rate.required' => translate('tax_rate_is_required!'), 'tax_rate.numeric' => translate('tax_rate_must_be_a_valid_number!'), 'tax_rate.min' => translate('tax_rate_must_be_at_least_0!'), ]; } }
Coded With 💗 by
0x6ick