Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/ET-VISA/blame/branch/et%2314/database/seeders/UserTableSeeder.php You should set ROOT_URL correctly, otherwise the web may not work correctly.

29 lines
587 B

<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use App\Models\User;
use Illuminate\Support\Facades\Hash;
class UserTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$user = User::create([
'name' => 'Super Admin',
'email' => 'admin@admin.com',
'password' => Hash::make('password'),
// 'is_admin' => true,
// 'is_super_admin' => true,
]);
}
}