mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
28 lines
592 B
PHP
28 lines
592 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class UsersTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('users')->insert([
|
|
'firstname' => 'Administrateur',
|
|
'lastname' => 'Administrateur',
|
|
'email' => 'admin@exvps.ca',
|
|
'password' => bcrypt('SuperAdmin'),
|
|
'rank' => '1',
|
|
'adress' => 'Inconnu',
|
|
'age' => '99',
|
|
'avatar' => '3',
|
|
'sexe' => 'm',
|
|
'job' => '1',
|
|
]);
|
|
}
|
|
}
|