develop
|
Last change
on this file since fb32aad was 4b7e2d3, checked in by beratkjufliju <kufliju@…>, 4 years ago |
|
bug fixes, edited export, added fileSeeder for DB testing
|
-
Property mode
set to
100644
|
|
File size:
763 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | namespace Database\Seeders;
|
|---|
| 4 |
|
|---|
| 5 | use App\Models\User;
|
|---|
| 6 | use Carbon\Carbon;
|
|---|
| 7 | use Illuminate\Database\Seeder;
|
|---|
| 8 |
|
|---|
| 9 | class UsersTableSeeder extends Seeder
|
|---|
| 10 | {
|
|---|
| 11 | /**
|
|---|
| 12 | * Run the database seeds.
|
|---|
| 13 | *
|
|---|
| 14 | * @return void
|
|---|
| 15 | */
|
|---|
| 16 | public function run()
|
|---|
| 17 | {
|
|---|
| 18 | \DB::table("users")->insert([
|
|---|
| 19 | "name" => "Berat",
|
|---|
| 20 | "surname" => "Kjufliju",
|
|---|
| 21 | "username" => "beratk",
|
|---|
| 22 | "password" => bcrypt("123456"),
|
|---|
| 23 | "email" => "kufliju@gmail.com",
|
|---|
| 24 | "phone_number" => "+38971201239",
|
|---|
| 25 | "role_id" => 1,
|
|---|
| 26 | "is_active" => true,
|
|---|
| 27 | "is_confirmed" => true,
|
|---|
| 28 | "created_by" => "1",
|
|---|
| 29 | "created_at" => now()
|
|---|
| 30 | ]);
|
|---|
| 31 |
|
|---|
| 32 | User::factory()->count(50)->create();
|
|---|
| 33 |
|
|---|
| 34 | }
|
|---|
| 35 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.