Skip to content

Commit e459f02

Browse files
commit on 'update'
1 parent 4f603be commit e459f02

File tree

236 files changed

+79524
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+79524
-18
lines changed

database/factories/UserFactory.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Database\Factories;
44

55
use App\Models\User;
6+
use Illuminate\Support\Arr;
67
use Illuminate\Database\Eloquent\Factories\Factory;
78
use Illuminate\Support\Str;
89

@@ -23,10 +24,13 @@ class UserFactory extends Factory
2324
public function definition()
2425
{
2526
return [
26-
'name' => $this->faker->name(),
27+
'First Name' => $this->faker->firstName(),
28+
'Last Name' => $this->faker->lastName(),
29+
'Gender' => Arr::random(['male', 'female', 'other']),
2730
'email' => $this->faker->unique()->safeEmail(),
2831
'email_verified_at' => now(),
2932
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
33+
'Phone' => $this->faker->phoneNumber,
3034
'remember_token' => Str::random(10),
3135
];
3236
}

database/migrations/2014_10_12_000000_create_users_table.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ class CreateUsersTable extends Migration
1414
public function up()
1515
{
1616
Schema::create('users', function (Blueprint $table) {
17-
$table->id();
18-
$table->string('name');
19-
$table->string('email')->unique();
20-
$table->timestamp('email_verified_at')->nullable();
17+
$table->increments('id')->unique();
18+
$table->string('First Name')->nullable();
19+
$table->string('Last Name')->nullable();
20+
$table->string('Gender')->nullable();
21+
$table->string('Email')->unique();
2122
$table->string('password');
23+
$table->string('Phone');
24+
$table->timestamp('email_verified_at')->nullable();
2225
$table->rememberToken();
2326
$table->timestamps();
2427
});

database/seeders/DatabaseSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ class DatabaseSeeder extends Seeder
1313
*/
1414
public function run()
1515
{
16-
// \App\Models\User::factory(10)->create();
16+
\App\Models\User::factory(10)->create();
1717
}
1818
}

package-lock.json

Lines changed: 16329 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

100644100755
Lines changed: 72 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,81 @@
11
{
2-
"private": true,
2+
"name": "@themesberg/volt-bootstrap-5-dashboard",
3+
"version": "1.3.1",
4+
"description": "Volt - Bootstrap 5 Dashboard",
5+
"main": "gulpfile.js",
6+
"author": "Themesberg",
7+
"keywords": [
8+
"bootstrap",
9+
"bootstrap5",
10+
"bootstrap-5",
11+
"bootstrap 5",
12+
"bootstrap 5 dashboard",
13+
"bootstrap 5 admin dashboard",
14+
"dashboard vanilla js",
15+
"admin dashboard vanilla js",
16+
"bootstrap template vanilla js",
17+
"bootstrap 5 chart",
18+
"bootstrap 5 datepicker",
19+
"bootstrap 5 beta 1"
20+
],
21+
"homepage": "https://themesberg.com/product/admin-dashboard/volt-bootstrap-5-dashboard",
22+
"bugs": {
23+
"url": "https://github.com/themesberg/volt-bootstrap-5-dashboard/issues"
24+
},
25+
"repository": {
26+
"type": "git",
27+
"url": "https://github.com/themesberg/volt-bootstrap-5-dashboard"
28+
},
29+
"license": "https://github.com/themesberg/volt-bootstrap-5-dashboard/blob/master/LICENSE.md",
30+
"devDependencies": {
31+
"browser-sync": "^2.26.13",
32+
"del": "4.1.1",
33+
"gulp": "4.0.2",
34+
"gulp-autoprefixer": "6.1.0",
35+
"gulp-clean-css": "4.2.0",
36+
"gulp-cssbeautify": "1.0.1",
37+
"gulp-file-include": "2.1.0",
38+
"gulp-header": "2.0.7",
39+
"gulp-htmlmin": "5.0.1",
40+
"gulp-npm-dist": "^1.0.3",
41+
"gulp-plumber": "1.2.1",
42+
"gulp-rename": "1.4.0",
43+
"gulp-sass": "4.0.2",
44+
"gulp-sourcemaps": "2.6.5",
45+
"gulp-uglify": "3.0.2",
46+
"gulp-wait": "0.0.2",
47+
"laravel-mix": "^6.0.6",
48+
"lodash": "^4.17.19",
49+
"merge-stream": "2.0.0",
50+
"postcss": "^8.1.14",
51+
"resolve-url-loader": "^3.1.3",
52+
"sass": "^1.32.12",
53+
"sass-loader": "^11.1.0"
54+
},
55+
"dependencies": {
56+
"@fortawesome/fontawesome-free": "5.11.2",
57+
"@popperjs/core": "^2.6.0",
58+
"bootstrap": "5.0.0-beta1",
59+
"chartist": "^0.11.4",
60+
"chartist-plugin-tooltips": "0.0.17",
61+
"cross-env": "^7.0.3",
62+
"node-sass": "^6.0.0",
63+
"notyf": "^3.9.0",
64+
"nouislider": "11.0.3",
65+
"onscreen": "1.3.4",
66+
"simplebar": "^6.0.0-beta.2",
67+
"smooth-scroll": "^16.1.0",
68+
"sweetalert2": "^9.17.1",
69+
"vanillajs-datepicker": "^1.0.3",
70+
"waypoints": "4.0.1"
71+
},
372
"scripts": {
73+
"scss": "node-sass --watch resources/scss -o css",
474
"dev": "npm run development",
575
"development": "mix",
676
"watch": "mix watch",
777
"watch-poll": "mix watch -- --watch-options-poll=1000",
878
"hot": "mix watch --hot",
979
"prod": "npm run production",
10-
"production": "mix --production"
11-
},
12-
"devDependencies": {
13-
"axios": "^0.21",
14-
"laravel-mix": "^6.0.6",
15-
"lodash": "^4.17.19",
16-
"postcss": "^8.1.14"
17-
}
80+
"production": "mix --production" }
1881
}

public/assets/img/brand/dark.svg

Lines changed: 13 additions & 0 deletions
Loading

public/assets/img/brand/light.svg

Lines changed: 1 addition & 0 deletions
Loading
Loading
Loading
5.49 KB
Loading

0 commit comments

Comments
 (0)