1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- namespace Database\Seeders;
- use Illuminate\Database\Console\Seeds\WithoutModelEvents;
- use Illuminate\Database\Seeder;
- use Illuminate\Support\Facades\DB;
- class UsersTableSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
- DB::table('users')->insert([
- [
-
- 'id' => 1,
-
- 'type' => 'tel',
-
-
- ],
- [
-
- 'id' => 2,
-
- 'type' => 'fixe',
-
-
- ],[
-
- 'id' => 3,
-
- 'type' => 'email',
-
-
- ],[
-
- 'id' => 4,
-
- 'type' => 'maps',
-
-
- ],[
-
- 'id' => 5,
-
- 'type' => 'youtube',
-
-
- ],[
-
- 'id' => 6,
-
- 'type' => 'facebook',
-
-
- ],[
-
- 'id' => 7,
-
- 'type' => 'instagram',
-
-
- ],
- [
-
- 'id' => 8,
-
- 'type' => 'twitter',
-
-
- ],
- [
-
- 'id' => 9,
-
- 'type' => 'linkdin',
-
-
- ],
-
-
- ]);
- }
-
- }
|