Skip to content

Commit a92f950

Browse files
2 parents a4b7862 + b08e57c commit a92f950

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ All notable changes to `Material Dashboard` frontend preset for Laravel will be
1818

1919
## Version 1.0.6 - 2019-09-23
2020
- Update to Laravel 6.x
21+
22+
## Version 1.0.7 - 2020-03-18
23+
- Update to Laravel 7.x

readme.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ After initializing a fresh instance of Laravel (and making all the necessary con
3030
### Via composer
3131

3232
1. `Cd` to your Laravel app
33-
2. Install this preset via `composer require laravel-frontend-presets/material-dashboard`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
34-
3. Run `php artisan ui material` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
33+
2. Type in your terminal: `composer require laravel/ui` and `php artisan ui vue --auth`
34+
3. Install this preset via `composer require laravel-frontend-presets/material-dashboard`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
35+
4. Run `php artisan ui material` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
3536
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
36-
4. In your terminal run `composer dump-autoload`
37-
5. Run `php artisan migrate --seed` to create basic users table
37+
5. In your terminal run `composer dump-autoload`
38+
6. Run `php artisan migrate --seed` to create basic users table
3839

3940
### By using the archive
4041

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@
7777
<p>{{ __('RTL Support') }}</p>
7878
</a>
7979
</li>
80-
<li class="nav-item active-pro{{ $activePage == 'upgrade' ? ' active' : '' }} bg-danger">
81-
<a class="nav-link text-white" href="{{ route('upgrade') }}">
82-
<i class="material-icons">unarchive</i>
80+
<li class="nav-item active-pro{{ $activePage == 'upgrade' ? ' active' : '' }}">
81+
<a class="nav-link text-white bg-danger" href="{{ route('upgrade') }}">
82+
<i class="material-icons text-white">unarchive</i>
8383
<p>{{ __('Upgrade to PRO') }}</p>
8484
</a>
8585
</li>
8686
</ul>
8787
</div>
88-
</div>
88+
</div>

src/material-stubs/resources/views/users/index.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@
148148
<p>{{ __('RTL Support') }}</p>
149149
</a>
150150
</li>
151-
<li class="nav-item active-pro">
152-
<a class="nav-link" href="{{ route('upgrade') }}">
153-
<i class="material-icons">unarchive</i>
151+
<li class="nav-item active-pro{{ $activePage == 'upgrade' ? ' active' : '' }}">
152+
<a class="nav-link text-white bg-danger" href="{{ route('upgrade') }}">
153+
<i class="material-icons text-white">unarchive</i>
154154
<p>{{ __('Upgrade to PRO') }}</p>
155155
</a>
156156
</li>
@@ -474,4 +474,4 @@
474474
</noscript>
475475
@stack('js')
476476
</body>
477-
</html>
477+
</html>

0 commit comments

Comments
 (0)