Skip to content

Commit f41fb39

Browse files
committed
refactor(assets): updated assets as per new design
1 parent 9f8fdcd commit f41fb39

File tree

318 files changed

+34114
-38484
lines changed

Some content is hidden

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

318 files changed

+34114
-38484
lines changed

.env

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=base64:mln1keRjYJYz06TPXJg8SZhJ7JN+oToy08vrPQhoq78=
44
APP_DEBUG=true
5-
APP_TIMEZONE=UTC
65
APP_URL=http://localhost
76

87
APP_LOCALE=en
98
APP_FALLBACK_LOCALE=en
109
APP_FAKER_LOCALE=en_US
1110

1211
APP_MAINTENANCE_DRIVER=file
13-
APP_MAINTENANCE_STORE=database
12+
# APP_MAINTENANCE_STORE=database
13+
14+
PHP_CLI_SERVER_WORKERS=4
1415

1516
BCRYPT_ROUNDS=12
1617

@@ -37,7 +38,7 @@ FILESYSTEM_DISK=local
3738
QUEUE_CONNECTION=database
3839

3940
CACHE_STORE=database
40-
CACHE_PREFIX=
41+
# CACHE_PREFIX=
4142

4243
MEMCACHED_HOST=127.0.0.1
4344

@@ -47,11 +48,11 @@ REDIS_PASSWORD=null
4748
REDIS_PORT=6379
4849

4950
MAIL_MAILER=log
51+
MAIL_SCHEME=null
5052
MAIL_HOST=127.0.0.1
5153
MAIL_PORT=2525
5254
MAIL_USERNAME=null
5355
MAIL_PASSWORD=null
54-
MAIL_ENCRYPTION=null
5556
MAIL_FROM_ADDRESS="hello@example.com"
5657
MAIL_FROM_NAME="${APP_NAME}"
5758

.env.example

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ APP_NAME=Laravel
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
5-
APP_TIMEZONE=UTC
65
APP_URL=http://localhost
76

87
APP_LOCALE=en
98
APP_FALLBACK_LOCALE=en
109
APP_FAKER_LOCALE=en_US
1110

1211
APP_MAINTENANCE_DRIVER=file
13-
APP_MAINTENANCE_STORE=database
12+
# APP_MAINTENANCE_STORE=database
13+
14+
PHP_CLI_SERVER_WORKERS=4
1415

1516
BCRYPT_ROUNDS=12
1617

@@ -37,7 +38,7 @@ FILESYSTEM_DISK=local
3738
QUEUE_CONNECTION=database
3839

3940
CACHE_STORE=database
40-
CACHE_PREFIX=
41+
# CACHE_PREFIX=
4142

4243
MEMCACHED_HOST=127.0.0.1
4344

@@ -47,11 +48,11 @@ REDIS_PASSWORD=null
4748
REDIS_PORT=6379
4849

4950
MAIL_MAILER=log
51+
MAIL_SCHEME=null
5052
MAIL_HOST=127.0.0.1
5153
MAIL_PORT=2525
5254
MAIL_USERNAME=null
5355
MAIL_PASSWORD=null
54-
MAIL_ENCRYPTION=null
5556
MAIL_FROM_ADDRESS="hello@example.com"
5657
MAIL_FROM_NAME="${APP_NAME}"
5758

.stylelintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist
2+
node_modules
3+
build
4+
_temp/

.stylelintrc.json

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
{
2+
"extends": [
3+
"stylelint-config-standard-scss",
4+
"stylelint-config-idiomatic-order",
5+
"@stylistic/stylelint-config"
6+
],
7+
"plugins": [
8+
"stylelint-use-logical-spec",
9+
"@stylistic/stylelint-plugin"
10+
],
11+
"rules": {
12+
"alpha-value-notation": null,
13+
"at-rule-empty-line-before": null,
14+
"block-no-empty": null,
15+
"color-function-notation": null,
16+
"color-named": "never",
17+
"custom-property-empty-line-before": null,
18+
"custom-property-pattern": null,
19+
"declaration-block-no-redundant-longhand-properties": null,
20+
"declaration-empty-line-before": null,
21+
"declaration-no-important": null,
22+
"font-family-no-missing-generic-family-keyword": [
23+
true,
24+
{
25+
"ignoreFontFamilies": [
26+
"boxicons",
27+
"tabler-icons",
28+
"remix-icons"
29+
]
30+
}
31+
],
32+
"font-weight-notation": [
33+
"numeric",
34+
{
35+
"ignore": [
36+
"relative"
37+
]
38+
}
39+
],
40+
"function-url-no-scheme-relative": true,
41+
"liberty/use-logical-spec": true,
42+
"media-feature-range-notation": null,
43+
"media-query-no-invalid": null,
44+
"no-descending-specificity": null,
45+
"no-invalid-double-slash-comments": true,
46+
"no-invalid-position-at-import-rule": null,
47+
"number-max-precision": null,
48+
"rule-empty-line-before": null,
49+
"selector-class-pattern": null,
50+
"selector-id-pattern": null,
51+
"selector-max-attribute": 2,
52+
"selector-max-id": 1,
53+
"selector-max-specificity": null,
54+
"selector-not-notation": null,
55+
"scss/at-extend-no-missing-placeholder": null,
56+
"scss/at-function-named-arguments": "never",
57+
"scss/at-if-closing-brace-newline-after": null,
58+
"scss/at-if-closing-brace-space-after": null,
59+
"scss/at-if-no-null": null,
60+
"scss/at-mixin-pattern": null,
61+
"scss/at-mixin-argumentless-call-parentheses": "always",
62+
"scss/at-rule-conditional-no-parentheses": null,
63+
"scss/comment-no-empty": null,
64+
"scss/dimension-no-non-numeric-values": true,
65+
"scss/dollar-variable-empty-line-before": null,
66+
"scss/dollar-variable-pattern": null,
67+
"scss/double-slash-comment-empty-line-before": null,
68+
"scss/double-slash-comment-whitespace-inside": null,
69+
"scss/function-quote-no-quoted-strings-inside": null,
70+
"scss/media-feature-value-dollar-variable": null,
71+
"scss/no-global-function-names": null,
72+
"@stylistic/at-rule-name-space-after": "always",
73+
"@stylistic/at-rule-semicolon-space-before": "never",
74+
"@stylistic/block-closing-brace-empty-line-before": null,
75+
"@stylistic/block-closing-brace-newline-after": [
76+
"always",
77+
{
78+
"ignoreAtRules": [
79+
"if",
80+
"else"
81+
]
82+
}
83+
],
84+
"@stylistic/block-opening-brace-space-before": null,
85+
"@stylistic/declaration-block-semicolon-newline-before": "never-multi-line",
86+
"@stylistic/indentation": 2,
87+
"@stylistic/max-empty-lines": 2,
88+
"@stylistic/max-line-length": [
89+
220,
90+
{
91+
"ignore": "comments"
92+
}
93+
],
94+
"@stylistic/no-eol-whitespace": true,
95+
"@stylistic/number-leading-zero": "never",
96+
"@stylistic/selector-list-comma-newline-before": "never-multi-line",
97+
"@stylistic/selector-list-comma-space-after": "always-single-line",
98+
"@stylistic/selector-list-comma-space-before": "never-single-line",
99+
"@stylistic/unicode-bom": "never"
100+
},
101+
"overrides": [
102+
{
103+
"files": [
104+
"**/_bootstrap-extended/**/*.scss"
105+
],
106+
"rules": {
107+
"declaration-property-value-disallowed-list": {
108+
"border": "none",
109+
"outline": "none"
110+
},
111+
"function-disallowed-list": [
112+
"lighten",
113+
"darken"
114+
],
115+
"property-disallowed-list": [
116+
"border-radius",
117+
"border-top-left-radius",
118+
"border-top-right-radius",
119+
"border-bottom-right-radius",
120+
"border-bottom-left-radius",
121+
"transition"
122+
],
123+
"scss/dollar-variable-default": [
124+
true,
125+
{
126+
"ignore": "local"
127+
}
128+
],
129+
"scss/selector-no-union-class-name": true
130+
}
131+
}
132+
]
133+
}

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"mrmlnc.vscode-scss",
1111
"gamunu.vscode-yarn",
1212
"zignd.html-css-class-completion",
13+
"shufo.vscode-blade-formatter"
1314
]
14-
}
15+
}

.vscode/settings.json

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"editor.wordWrap": "off",
3+
"editor.tabSize": 2,
34
"editor.formatOnSave": true,
5+
"editor.codeActionsOnSave": {
6+
"source.fixAll": "explicit"
7+
},
48
"files.trimFinalNewlines": true,
5-
"diffEditor.ignoreTrimWhitespace": false,
9+
"diffEditor.ignoreTrimWhitespace": true,
610
"cSpell.language": "en",
711
"search.exclude": {
812
"**/node_modules": true,
@@ -11,6 +15,8 @@
1115
"*.min.js": true,
1216
"*.min.css": true
1317
},
18+
"blade.format.enable": true,
19+
"bladeFormatter.format.indentSize": 2,
1420
// JS
1521
"javascript.updateImportsOnFileMove.enabled": "always",
1622
// JSON
@@ -33,9 +39,11 @@
3339
"[markdown]": {
3440
"editor.defaultFormatter": "esbenp.prettier-vscode"
3541
},
36-
"[scss]": {
37-
"editor.defaultFormatter": "esbenp.prettier-vscode"
38-
},
42+
// Extension: Stylelint
43+
"stylelint.packageManager": "pnpm",
44+
"stylelint.validate": [
45+
"scss"
46+
],
3947
"[css]": {
4048
"editor.defaultFormatter": "esbenp.prettier-vscode"
4149
},
@@ -45,12 +53,8 @@
4553
// Extension: ESLint
4654
"eslint.packageManager": "yarn",
4755
"eslint.format.enable": true,
48-
// "eslint.workingDirectories": [
49-
// "src",
50-
// "dev"
51-
// ],
5256
"eslint.options": {
53-
"configFile": ".eslintrc.json"
57+
"overrideConfigFile": ".eslintrc.json"
5458
},
5559
"eslint.validate": [
5660
"vue",
@@ -62,4 +66,7 @@
6266
],
6367
// Extension: npm
6468
"npm.packageManager": "yarn",
69+
"[blade]": {
70+
"editor.defaultFormatter": "shufo.vscode-blade-formatter"
71+
}
6572
}

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<p align="center"></p>
22

33
<p align="center">
4-
<a href="https://themeselection.com/item/materio-dashboard-free-laravel/" target="_blank">
4+
![alt text](image.png) <a href="https://themeselection.com/item/materio-dashboard-free-laravel/" target="_blank">
55
<img src="https://cdn.themeselection.com/ts-assets/materio/logo/logo.png" alt="materio-logo" width="40px" height="auto">
66
</a>
77
</p>
88

99
<h1 align="center">
1010
<a href="https://themeselection.com/item/materio-dashboard-free-laravel/" target="_blank" align="center">
11-
Materio - Free Bootstrap 5 HTML Laravel Admin Template
11+
Materio - Bootstrap 5 HTML + Laravel Admin Template
1212
</a>
1313
</h1>
1414

15-
<p align="center">Most Powerful & Comprehensive Free Bootstrap 5 HTML Laravel Admin Dashboard Template built for developers!</p>
15+
<p align="center">Most Powerful & Comprehensive Bootstrap 5 HTML + Laravel Admin Dashboard Template built for developers!</p>
1616

1717
<p align="center">
1818
<a href="https://github.com/themeselection/materio-bootstrap-html-laravel-admin-template-free/blob/main/LICENSE">
@@ -193,6 +193,7 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium
193193
- Copyright © [ThemeSelection](https://themeselection.com/)
194194
- Licensed under [MIT](LICENSE)
195195
- All our free items are Open Source and licensed under MIT. You can use our free items for personal as well as commercial purposes. We just need an attribution from your end. Copy the below link and paste it at the footer of your web application or project.
196+
196197
```html
197198
<a href="https://themeselection.com/">ThemeSelection</a>
198199
```
@@ -203,11 +204,11 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium
203204
<!-- Figma -->
204205
<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;
205206
<!-- HTML -->
206-
<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;
207+
<a href="https://themeselection.com/item/materio-dashboard-pro-bootstrap/" 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;
207208
<!-- HTML + Laravel -->
208-
<a href="https://themeselection.com/item/materio-bootstrap-laravel-admin-template/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/efe420e4-9863-41b7-9eda-47ea94f21a62"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/be3b86e0-4d5e-4736-bf89-4267fb4d6710"><img width="auto" height="74px" alt="html_laravel" src="https://github.com/microsoft/vscode/assets/47495003/be3b86e0-4d5e-4736-bf89-4267fb4d6710"></picture></img></a>&nbsp;&nbsp;
209+
<a href="https://themeselection.com/item/materio-dashboard-pro-laravel/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/efe420e4-9863-41b7-9eda-47ea94f21a62"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/be3b86e0-4d5e-4736-bf89-4267fb4d6710"><img width="auto" height="74px" alt="html_laravel" src="https://github.com/microsoft/vscode/assets/47495003/be3b86e0-4d5e-4736-bf89-4267fb4d6710"></picture></img></a>&nbsp;&nbsp;
209210
<!-- HTML + Django -->
210-
<a href="https://themeselection.com/item/materio-bootstrap-django-admin-template/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/3c87d33b-1223-4aaa-a652-388dcb714c98"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/51db1947-eac1-466f-87fd-5a209010fe9c"><img width="auto" height="74px" alt="html_django" src="https://github.com/microsoft/vscode/assets/47495003/51db1947-eac1-466f-87fd-5a209010fe9c"></picture></img></a>&nbsp;&nbsp;
211+
<a href="https://themeselection.com/item/materio-dashboard-pro-django/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/3c87d33b-1223-4aaa-a652-388dcb714c98"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/51db1947-eac1-466f-87fd-5a209010fe9c"><img width="auto" height="74px" alt="html_django" src="https://github.com/microsoft/vscode/assets/47495003/51db1947-eac1-466f-87fd-5a209010fe9c"></picture></img></a>&nbsp;&nbsp;
211212
<!-- .Net Core -->
212213
<a href="https://themeselection.com/item/materio-aspnet-core-mvc-admin-template/" target="_blank"><picture><source width="auto" height="74px" media="(prefers-color-scheme: dark)" srcset="https://github.com/microsoft/vscode/assets/47495003/6327fd7b-9c54-4189-a852-28551ad0e002"><source width="auto" height="74px" media="(prefers-color-scheme: light)" srcset="https://github.com/microsoft/vscode/assets/47495003/9856e9d5-021f-4573-902a-702e80dd0102"><img width="auto" height="74px" alt="net_core" src="https://github.com/microsoft/vscode/assets/47495003/9856e9d5-021f-4573-902a-702e80dd0102"></picture></img></a>&nbsp;&nbsp;
213214
<!-- NextJS -->
@@ -247,9 +248,9 @@ If you want to [Free Admin Templates](https://themeselection.com/item/category/f
247248

248249
## Social Media :earth_africa:
249250

250-
- [X](https://x.com/Theme_Selection)
251+
- [x](https://x.com/Theme_Selection)
251252
- [Facebook](https://www.facebook.com/ThemeSelections/)
252253
- [Pinterest](https://www.pinterest.com/themeselection/)
253254
- [Instagram](https://www.instagram.com/themeselection/)
254-
- [Discord](https://discord.gg/kBHkY7DekX)
255+
- [Discord](https://discord.com/invite/kBHkY7DekX)
255256
- [YouTube](https://www.youtube.com/channel/UCuryo5s0CW4aP83itLjIdZg)

app/Http/Controllers/Controller.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
abstract class Controller
66
{
7-
//
8-
}
7+
//
8+
}

app/Http/Controllers/icons/RiIcons.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ public function index()
1111
{
1212
return view('content.icons.icons-ri');
1313
}
14-
}
14+
}

0 commit comments

Comments
 (0)