⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
muhasebe
/
database
/
seeders
/
View File Name :
UsersTableSeeder.php
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; use Modules\Theme\ThemeManager; class UsersTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $active_theme = ThemeManager::current(); $active_theme = strtolower($active_theme); $active_theme = ($active_theme == "bc") ? "bookingcore" : $active_theme; DB::table('users')->insert([ 'first_name' => 'Vendor', 'last_name' => '01', 'email' => 'vendor1@'.$active_theme.'.test', 'password' => bcrypt(md5(rand())), 'phone' => '112 666 888', 'status' => 'publish', 'city' => 'New York', 'country' => 'US', 'created_at' => date("Y-m-d H:i:s"), 'email_verified_at' => date("Y-m-d H:i:s"), 'bio' => 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.' ]); $user = \App\User::where('email', 'vendor1@'.$active_theme.'.test')->first(); $user->need_update_pw = 1; $user->save(); $user->assignRole('vendor'); DB::table('users')->insert([ 'first_name' => 'Customer', 'last_name' => '01', 'email' => 'customer1@'.$active_theme.'.test', 'password' => bcrypt(md5(rand())), 'phone' => '112 666 888', 'status' => 'publish', 'city' => 'New York', 'country' => 'US', 'created_at' => date("Y-m-d H:i:s"), 'email_verified_at' => date("Y-m-d H:i:s"), 'bio' => 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.' ]); $user = \App\User::where('email', 'customer1@'.$active_theme.'.test')->first(); $user->assignRole('customer'); if(!is_demo_mode()){ $user->need_update_pw = 1; $user->save(); } $vendor = [ [ 'Elise', 'Aarohi' ], [ 'Kaytlyn', 'Alvapriya' ], [ 'Lynne', 'Victoria' ] ]; foreach ($vendor as $k => $v) { DB::table('users')->insert([ 'first_name' => $v[0], 'last_name' => $v[1], 'email' => strtolower($v[1]) . '@'.$active_theme.'.test', 'password' => bcrypt(md5(rand())), 'phone' => '112 666 888', 'status' => 'publish', 'city' => 'New York', 'country' => 'US', 'created_at' => date("Y-m-d H:i:s"), 'email_verified_at' => date("Y-m-d H:i:s"), 'bio' => 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.' ]); $user = \App\User::where('email', $v[1] . '@'.$active_theme.'.test')->first(); if(!is_demo_mode()){ $user->need_update_pw = 1; $user->save(); } $user->assignRole('vendor'); } } }