One Hat Cyber Team
Your IP :
18.225.95.116
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
www
/
centosuit
/
app
/
Http
/
Requests
/
View File Name :
UpdateThemeSetting.php
<?php namespace App\Http\Requests; class UpdateThemeSetting extends CoreRequest { /** * 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 [ 'primary_color.*' => [ 'required', 'regex:/^#([a-f0-9]{6}|[a-f0-9]{3})$/i' ], 'global_header_color' => [ 'required', 'regex:/^#([a-f0-9]{6}|[a-f0-9]{3})$/i' ], 'app_name' => 'required' ]; } public function messages() { return [ 'primary_color.*.required' => __('messages.primaryColorRequired'), ]; } }