develop
Last change
on this file since d795fa6 was d795fa6, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
added validation to blades
|
-
Property mode
set to
100644
|
File size:
771 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" => Carbon::now()
|
---|
30 | ]);
|
---|
31 |
|
---|
32 | User::factory()->count(20)->create();
|
---|
33 |
|
---|
34 | }
|
---|
35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.