One Hat Cyber Team
Your IP:
216.73.216.63
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
proc
/
thread-self
/
cwd
/
Edit File:
Requests.tar
CategoryRequest.php 0000644 00000002047 15113122100 0010370 0 ustar 00 <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Support\Facades\Auth; class CategoryRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return Auth::check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name'=> 'required', 'slug' => 'required|unique:categories|regex:/^[a-zA-Z0-9\s-]+$/', 'photo' => 'mimes:jpeg,jpg,png,svg', ]; } public function messages() { return [ 'name.required' => __('Name field is required.'), 'photo.mimes' => __('Photo Type is Invalid.'), 'slug.unique' => __('This slug has already been taken.'), 'slug.regex' => __('Slug Must Not Have Any Special Characters.'), ]; } } error_log 0000644 00000001656 15113122100 0006453 0 ustar 00 [19-Nov-2025 01:26:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/fluxyjvi/public_html/project/app/Http/Requests/CategoryRequest.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Http/Requests/CategoryRequest.php on line 8 [24-Nov-2025 10:16:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/fluxyjvi/public_html/project/app/Http/Requests/CategoryRequest.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Http/Requests/CategoryRequest.php on line 8 [25-Nov-2025 10:55:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/fluxyjvi/public_html/project/app/Http/Requests/CategoryRequest.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Http/Requests/CategoryRequest.php on line 8
Simpan