Skip to content

Commit b43aba5

Browse files
Merge pull request #3 from themeselection/design-update
Design update
2 parents 9b8886f + d2d95bc commit b43aba5

File tree

201 files changed

+28460
-11591
lines changed

Some content is hidden

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

201 files changed

+28460
-11591
lines changed

.env

+27-18
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,20 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=base64:mln1keRjYJYz06TPXJg8SZhJ7JN+oToy08vrPQhoq78=
44
APP_DEBUG=true
5+
APP_TIMEZONE=UTC
56
APP_URL=http://localhost
67

8+
APP_LOCALE=en
9+
APP_FALLBACK_LOCALE=en
10+
APP_FAKER_LOCALE=en_US
11+
12+
APP_MAINTENANCE_DRIVER=file
13+
APP_MAINTENANCE_STORE=database
14+
15+
BCRYPT_ROUNDS=12
16+
717
LOG_CHANNEL=stack
18+
LOG_STACK=single
819
LOG_DEPRECATIONS_CHANNEL=null
920
LOG_LEVEL=debug
1021

@@ -15,22 +26,29 @@ DB_DATABASE=laravel
1526
DB_USERNAME=root
1627
DB_PASSWORD=
1728

18-
BROADCAST_DRIVER=log
19-
CACHE_DRIVER=file
20-
FILESYSTEM_DISK=local
21-
QUEUE_CONNECTION=sync
22-
SESSION_DRIVER=file
29+
SESSION_DRIVER=database
2330
SESSION_LIFETIME=120
31+
SESSION_ENCRYPT=false
32+
SESSION_PATH=/
33+
SESSION_DOMAIN=null
34+
35+
BROADCAST_CONNECTION=log
36+
FILESYSTEM_DISK=local
37+
QUEUE_CONNECTION=database
38+
39+
CACHE_STORE=database
40+
CACHE_PREFIX=
2441

2542
MEMCACHED_HOST=127.0.0.1
2643

44+
REDIS_CLIENT=phpredis
2745
REDIS_HOST=127.0.0.1
2846
REDIS_PASSWORD=null
2947
REDIS_PORT=6379
3048

31-
MAIL_MAILER=smtp
32-
MAIL_HOST=mailpit
33-
MAIL_PORT=1025
49+
MAIL_MAILER=log
50+
MAIL_HOST=127.0.0.1
51+
MAIL_PORT=2525
3452
MAIL_USERNAME=null
3553
MAIL_PASSWORD=null
3654
MAIL_ENCRYPTION=null
@@ -43,13 +61,4 @@ AWS_DEFAULT_REGION=us-east-1
4361
AWS_BUCKET=
4462
AWS_USE_PATH_STYLE_ENDPOINT=false
4563

46-
PUSHER_APP_ID=
47-
PUSHER_APP_KEY=
48-
PUSHER_APP_SECRET=
49-
PUSHER_HOST=
50-
PUSHER_PORT=443
51-
PUSHER_SCHEME=https
52-
PUSHER_APP_CLUSTER=mt1
53-
54-
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
55-
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
64+
VITE_APP_NAME="${APP_NAME}"

.env.example

+33-24
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,53 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
5+
APP_TIMEZONE=UTC
56
APP_URL=http://localhost
67

8+
APP_LOCALE=en
9+
APP_FALLBACK_LOCALE=en
10+
APP_FAKER_LOCALE=en_US
11+
12+
APP_MAINTENANCE_DRIVER=file
13+
APP_MAINTENANCE_STORE=database
14+
15+
BCRYPT_ROUNDS=12
16+
717
LOG_CHANNEL=stack
18+
LOG_STACK=single
819
LOG_DEPRECATIONS_CHANNEL=null
920
LOG_LEVEL=debug
1021

11-
DB_CONNECTION=mysql
12-
DB_HOST=127.0.0.1
13-
DB_PORT=3306
14-
DB_DATABASE=laravel
15-
DB_USERNAME=root
16-
DB_PASSWORD=
22+
DB_CONNECTION=sqlite
23+
# DB_HOST=127.0.0.1
24+
# DB_PORT=3306
25+
# DB_DATABASE=laravel
26+
# DB_USERNAME=root
27+
# DB_PASSWORD=
1728

18-
BROADCAST_DRIVER=log
19-
CACHE_DRIVER=file
20-
FILESYSTEM_DISK=local
21-
QUEUE_CONNECTION=sync
22-
SESSION_DRIVER=file
29+
SESSION_DRIVER=database
2330
SESSION_LIFETIME=120
31+
SESSION_ENCRYPT=false
32+
SESSION_PATH=/
33+
SESSION_DOMAIN=null
34+
35+
BROADCAST_CONNECTION=log
36+
FILESYSTEM_DISK=local
37+
QUEUE_CONNECTION=database
38+
39+
CACHE_STORE=database
40+
CACHE_PREFIX=
2441

2542
MEMCACHED_HOST=127.0.0.1
2643

44+
REDIS_CLIENT=phpredis
2745
REDIS_HOST=127.0.0.1
2846
REDIS_PASSWORD=null
2947
REDIS_PORT=6379
3048

31-
MAIL_MAILER=smtp
32-
MAIL_HOST=mailpit
33-
MAIL_PORT=1025
49+
MAIL_MAILER=log
50+
MAIL_HOST=127.0.0.1
51+
MAIL_PORT=2525
3452
MAIL_USERNAME=null
3553
MAIL_PASSWORD=null
3654
MAIL_ENCRYPTION=null
@@ -43,13 +61,4 @@ AWS_DEFAULT_REGION=us-east-1
4361
AWS_BUCKET=
4462
AWS_USE_PATH_STYLE_ENDPOINT=false
4563

46-
PUSHER_APP_ID=
47-
PUSHER_APP_KEY=
48-
PUSHER_APP_SECRET=
49-
PUSHER_HOST=
50-
PUSHER_PORT=443
51-
PUSHER_SCHEME=https
52-
PUSHER_APP_CLUSTER=mt1
53-
54-
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
55-
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
64+
VITE_APP_NAME="${APP_NAME}"

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/*.*
2+
!resources/assets/vendor/js/*.js

.eslintrc.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"jquery": true
7+
},
8+
"plugins": ["prettier"],
9+
"extends": ["airbnb-base", "plugin:prettier/recommended"],
10+
"rules": {
11+
"prettier/prettier": "error",
12+
"no-underscore-dangle": "off",
13+
"semi": ["error", "never"],
14+
"arrow-parens": ["error", "as-needed"],
15+
"no-param-reassign": "off",
16+
"no-plusplus": [
17+
"error",
18+
{
19+
"allowForLoopAfterthoughts": true
20+
}
21+
],
22+
"no-cond-assign": ["error", "except-parens"]
23+
}
24+
}

.gitignore

+4-6
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@ Homestead.json
1818
Homestead.yaml
1919
npm-debug.log
2020
yarn-error.log
21+
/.fleet
2122
/.idea
23+
/.vscode
2224

25+
!/public/assets
26+
!/public/assets/*
2327
/public/css
2428
/public/js
25-
/public/mix-manifest.json
26-
# But not these files...
27-
!/public/assets/*
28-
/public/assets/js
29-
/public/assets/css
30-
/public/assets/vendor

.prettierrc.json

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"arrowParens": "avoid",
33
"bracketSpacing": true,
4+
"bracketSameLine": true,
45
"htmlWhitespaceSensitivity": "css",
56
"insertPragma": false,
67
"jsxSingleQuote": true,
@@ -12,5 +13,17 @@
1213
"singleQuote": true,
1314
"tabWidth": 2,
1415
"trailingComma": "none",
15-
"useTabs": false
16-
}
16+
"useTabs": false,
17+
"endOfLine": "lf",
18+
"embeddedLanguageFormatting": "auto",
19+
"overrides": [
20+
{
21+
"files": [
22+
"full-version/resources/assets/vendor/js/*.js"
23+
],
24+
"options": {
25+
"semi": false
26+
}
27+
}
28+
]
29+
}

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<p align="center">
44
<a href="https://themeselection.com/item/materio-free-bootstrap-html-laravel-admin-template/" target="_blank">
5-
<img src="https://user-images.githubusercontent.com/64475785/158384184-1fe44a59-6b68-40f5-b860-d14c51f0ce5d.svg" alt="materio-logo" width="60px" height="auto">
5+
<img src="https://cdn.themeselection.com/ts-assets/materio/logo/logo.png" alt="materio-logo" width="40px" height="auto">
66
</a>
77
</p>
88

@@ -32,7 +32,7 @@
3232
</a>
3333
</p>
3434

35-
<kbd>[![Materio - Bootstrap 5 HTML Laravel Admin Template Demo Screenshot](https://cdn.jsdelivr.net/gh/themeselection/ts-assets/materio/materio-bootstrap-laravel-admin-template-free/banner/banner.png)](https://themeselection.com/item/materio-free-bootstrap-html-laravel-admin-template/)</kbd>
35+
<kbd>[![Materio - Bootstrap 5 HTML Laravel Admin Template Demo Screenshot](https://cdn.themeselection.com/ts-assets/materio/materio-bootstrap-laravel-admin-template-free/banner/banner.png)](https://themeselection.com/item/materio-free-bootstrap-html-laravel-admin-template/)</kbd>
3636

3737
## Introduction 🚀
3838

@@ -68,7 +68,7 @@ yarn
6868
5. To run the project, you need to run the following command in the project directory. It will compile JavaScript and Styles.
6969

7070
```bash
71-
yarn dev
71+
yarn build
7272
```
7373

7474
6. To serve the application, you need to run the following command in the project directory
@@ -109,7 +109,7 @@ yarn prod
109109
- Extended UI
110110
- Perfect Scrollbar
111111
- Text Divider
112-
- Material Design Icons
112+
- Remix Icons
113113
- Form Elements
114114
- Basic Inputs
115115
- Input Groups
@@ -130,7 +130,7 @@ yarn prod
130130
| Fixed Layout(Menu) | Fixed & Static Layout(Menu) |
131131
| 1 Simple Dashboard | 5 Niche Dashboards |
132132
| - | Multiple Ready to use Application like **Laravel CRUD Application**, Email, Chat, Calendar, Kanban, eCommerce, Academy, Logistics, Invoice, Users List, Users View, Roles and Permission etc. |
133-
| Simple From Elements | Advance form elements, validation & form wizard |
133+
| Simple Form Elements | Advance form elements, validation & form wizard |
134134
| Basic Cards | Basic, Advance , Statistics, Analytics, Gamifications and Actions Cards |
135135
| Basic User Interface(Components) | Advance and Custom User Interfaces(Components) |
136136
| Two Extended Components | Twelve Ready to use Extended Components |
@@ -200,7 +200,7 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium
200200
## Also Available In
201201

202202
<p>
203-
<!-- Figma -->
203+
<!-- Figma -->
204204
<a href="https://themeselection.com/item/materio-figma-admin-dashboard-ui-kit/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/0318a6c8-4f9b-4cf6-af5e-d357f909ea2b"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/47f21dfe-c1fc-4a7d-859e-4d98f8cdded1"><img width="auto" height="74px" alt="html" src="https://github.com/microsoft/vscode/assets/47495003/47f21dfe-c1fc-4a7d-859e-4d98f8cdded1"></picture></img></a>&nbsp;&nbsp;
205205
<!-- HTML -->
206206
<a href="https://themeselection.com/item/materio-bootstrap-html-admin-template/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/5fe77c46-2e4c-475a-8dec-e30e2badddee"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/3f5decd8-cd99-4ed3-aa76-528ca061385b"><img width="auto" height="74px" alt="html" src="https://github.com/microsoft/vscode/assets/47495003/3f5decd8-cd99-4ed3-aa76-528ca061385b"></picture></img></a>&nbsp;&nbsp;
@@ -226,22 +226,22 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium
226226

227227
**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use **Fully Coded Dashboard Templates & UI Kits** to create your applications faster!
228228

229-
- [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/)
230-
- [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/)
231-
- [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/)
229+
- [Bootstrap Admin Templates](https://themeselection.com/item/category/bootstrap-admin-template/)
230+
- [VueJS Admin Templates](https://themeselection.com/item/category/vuejs-admin-templates/)
231+
- [Laravel Admin Templates](https://themeselection.com/item/category/laravel-admin-templates/)
232232
- [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/)
233233
- [React (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/)
234234
- [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/)
235-
- [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/)
235+
- [Free UI Kits](https://themeselection.com/item/category/free-ui-kits/)
236236

237-
If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/).
237+
If you want to [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/).
238238

239239
## Useful Links 🎁
240240

241-
- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/)
242-
- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/)
243-
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
244241
- [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/)
242+
- [Freebies](https://themeselection.com/item/category/free-admin-templates/)
243+
- [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/)
244+
- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/)
245245

246246
## Social Media :earth_africa:
247247

app/Console/Kernel.php

-27
This file was deleted.

app/Exceptions/Handler.php

-30
This file was deleted.

app/Http/Controllers/Controller.php

+3-7
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22

33
namespace App\Http\Controllers;
44

5-
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
6-
use Illuminate\Foundation\Validation\ValidatesRequests;
7-
use Illuminate\Routing\Controller as BaseController;
8-
9-
class Controller extends BaseController
5+
abstract class Controller
106
{
11-
use AuthorizesRequests, ValidatesRequests;
12-
}
7+
//
8+
}

0 commit comments

Comments
 (0)