One Hat Cyber Team
Your IP :
3.21.55.224
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 :
UpdateQuickBooksSetting.php
<?php namespace App\Http\Requests; class UpdateQuickBooksSetting 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<string, mixed> */ public function rules() { if (!request()->has('status')) { return []; } $rules = ['environment' => 'required|in:Production,Development']; if ($this->environment == 'Development') { $rules['sandbox_client_id'] = 'required'; $rules['sandbox_client_secret'] = 'required'; } else { $rules['client_id'] = 'required'; $rules['client_secret'] = 'required'; } return $rules; } }