Skip to content

Commit f763f73

Browse files
merge
2 parents 055d722 + fdb6306 commit f763f73

File tree

9 files changed

+451
-15
lines changed

9 files changed

+451
-15
lines changed

ISSUE_TEMPLATE.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Prerequisites
2+
3+
Please answer the following questions for yourself before submitting an issue.
4+
5+
- [ ] I am running the latest version
6+
- [ ] I checked the documentation and found no answer
7+
- [ ] I checked to make sure that this issue has not already been filed
8+
- [ ] I'm reporting the issue to the correct repository (for multi-repository projects)
9+
10+
# Expected Behavior
11+
12+
Please describe the behavior you are expecting
13+
14+
# Current Behavior
15+
16+
What is the current behavior?
17+
18+
# Failure Information (for bugs)
19+
20+
Please help provide information about the failure if this is a bug. If it is not a bug, please remove the rest of this template.
21+
22+
## Steps to Reproduce
23+
24+
Please provide detailed steps for reproducing the issue.
25+
26+
1. step 1
27+
2. step 2
28+
3. you get it...
29+
30+
## Context
31+
32+
Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions.
33+
34+
* Device:
35+
* Operating System:
36+
* Browser and Version:
37+
38+
## Failure Logs
39+
40+
Please include any relevant log snippets or files here.

readme.md

Lines changed: 395 additions & 11 deletions
Large diffs are not rendered by default.

screens/Dashboard.png

29 KB
Loading

screens/Profile.png

33.3 KB
Loading

screens/Register.png

2.33 MB
Loading

screens/Tables.png

331 KB
Loading

screens/Users.png

34.4 KB
Loading

src/material-stubs/resources/views/layouts/app.blade.php

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
77
<meta name="csrf-token" content="{{ csrf_token() }}">
8-
<title>{{ config('app.name', 'Material Dashboard') }}</title>
8+
<title>{{ __('Material Dashboard Laravel - Free Frontend Preset for Laravel') }}</title>
99
<link rel="apple-touch-icon" sizes="76x76" href="{{ asset('material') }}/img/apple-icon.png">
1010
<link rel="icon" type="image/png" href="{{ asset('material') }}/img/favicon.png">
1111
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
@@ -16,8 +16,20 @@
1616
<link href="{{ asset('material') }}/css/material-dashboard.css?v=2.1.1" rel="stylesheet" />
1717
<!-- CSS Just for demo purpose, don't include it in your project -->
1818
<link href="{{ asset('material') }}/demo/demo.css" rel="stylesheet" />
19+
<!-- Google Tag Manager -->
20+
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
21+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
22+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
23+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
24+
})(window,document,'script','dataLayer','GTM-NKDMSK6');</script>
25+
<!-- End Google Tag Manager -->
1926
</head>
2027
<body class="{{ $class ?? '' }}">
28+
<!-- Google Tag Manager (noscript) -->
29+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NKDMSK6"
30+
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
31+
<!-- End Google Tag Manager (noscript) -->
32+
2133
@auth()
2234
<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
2335
@csrf
@@ -38,10 +50,10 @@
3850
<li class="adjustments-line">
3951
<a href="javascript:void(0)" class="switch-trigger active-color">
4052
<div class="badge-colors ml-auto mr-auto">
41-
<span class="badge filter badge-purple active" data-color="purple"></span>
53+
<span class="badge filter badge-purple " data-color="purple"></span>
4254
<span class="badge filter badge-azure" data-color="azure"></span>
4355
<span class="badge filter badge-green" data-color="green"></span>
44-
<span class="badge filter badge-warning" data-color="orange"></span>
56+
<span class="badge filter badge-warning active" data-color="orange"></span>
4557
<span class="badge filter badge-danger" data-color="danger"></span>
4658
<span class="badge filter badge-rose" data-color="rose"></span>
4759
</div>

src/material-stubs/resources/views/layouts/navbars/sidebar.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="sidebar" data-color="purple" data-background-color="white" data-image="{{ asset('material') }}/img/sidebar-1.jpg">
1+
<div class="sidebar" data-color="orange" data-background-color="white" data-image="{{ asset('material') }}/img/sidebar-1.jpg">
22
<!--
33
Tip 1: You can change the color of the sidebar using: data-color="purple | azure | green | orange | danger"
44

0 commit comments

Comments
 (0)