mirror of https://github.com/hasinhayder/hydra
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
747 B
31 lines
747 B
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Role;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class UsersSeeder extends Seeder {
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run() {
|
|
Schema::disableForeignKeyConstraints();
|
|
DB::table('users')->truncate();
|
|
Schema::enableForeignKeyConstraints();
|
|
|
|
$user = User::create([
|
|
'email' => 'admin@hydra.project',
|
|
'password' => Hash::make('hydra'),
|
|
'name' => 'Hydra Admin',
|
|
]);
|
|
$user->roles()->attach(Role::where('slug', 'admin')->first());
|
|
}
|
|
}
|