One Hat Cyber Team
Your IP:
216.73.216.30
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
/
self
/
cwd
/
View File Name :
factories.tar
error_log 0000644 00000003066 15111332655 0006470 0 ustar 00 [13-Nov-2025 12:45:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php:11 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php on line 11 [18-Nov-2025 09:26:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php:11 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php on line 11 [18-Nov-2025 19:34:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php:11 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php on line 11 [21-Nov-2025 06:13:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php:11 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php on line 11 [22-Nov-2025 04:37:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php:11 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/database/factories/UserFactory.php on line 11 UserFactory.php 0000644 00000001712 15111332655 0007526 0 ustar 00 <?php namespace Database\Factories; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; /** * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User> */ class UserFactory extends Factory { /** * Define the model's default state. * * @return array<string, mixed> */ public function definition() { return [ 'name' => fake()->name(), 'email' => fake()->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. * * @return static */ public function unverified() { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } }