Skip to content

Commit f92bf4f

Browse files
2 parents ef8a992 + 803c3a2 commit f92bf4f

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ After initializing a fresh instance of Laravel (and making all the necessary con
2727
### Via composer
2828

2929
1. `Cd` to your Laravel app
30-
2. Install this preset via `composer require laravel-frontend-presets/now-ui-dashboard`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
31-
3. Run `php artisan ui nowui` command to install the NowUI 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`
30+
2. Type in your terminal: `composer require laravel/ui` and `php artisan ui vue --auth`
31+
3. Install this preset via `composer require laravel-frontend-presets/now-ui-dashboard`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
32+
4. Run `php artisan ui nowui` command to install the NowUI 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`
3233
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
33-
4. In your terminal run `composer dump-autoload`
34-
5. Run `php artisan migrate --seed` to create basic users table
34+
5. In your terminal run `composer dump-autoload`
35+
6. Run `php artisan migrate --seed` to create basic users table
3536

3637
### By using the archive
3738

@@ -41,8 +42,8 @@ After initializing a fresh instance of Laravel (and making all the necessary con
4142
4. Open `composer.json` file
4243
5. Add `"LaravelFrontendPresets\\NowUiPreset\\": "presets/NowUi/src"` to `autoload/psr-4` and to `autoload-dev/psr-4`
4344
6. Add `LaravelFrontendPresets\NowUiPreset\NowUiPresetServiceProvider::class` to `config/app.php` file
44-
7. In your terminal run `composer dump-autoload`
45-
8. TYpe in your terminal: `composer require laravel/ui` and `php artisan ui vue --auth`
45+
7. Type in your terminal: `composer require laravel/ui` and `php artisan ui vue --auth`
46+
8. In your terminal run `composer dump-autoload`
4647
9. Run `php artisan ui nowui` command to install the NowUI 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`
4748
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
4849
10. Run `php artisan migrate --seed` to create basic users table

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ All notable changes to `Now Ui Dashboard` frontend preset for Laravel will be do
1313
## Version 1.0.1 - 2019-09-23
1414

1515
- Update to Laravel 6.x
16+
17+
## Version 1.0.2 - 2020-03-18
18+
19+
- Update to Laravel 7.x

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@
7272
<p>{{ __('Typography') }}</p>
7373
</a>
7474
</li>
75-
<li class = "@if ($activePage == 'upgrade') active @endif active-pro">
76-
<a href="{{ route('page.index','upgrade') }}" class="color-ev">
75+
<li class = "">
76+
<a href="{{ route('page.index','upgrade') }}" class="bg-info">
7777
<i class="now-ui-icons arrows-1_cloud-download-93"></i>
7878
<p>{{ __('Upgrade to PRO') }}</p>
7979
</a>
8080
</li>
8181
</ul>
8282
</div>
83-
</div>
83+
</div>

src/now-ui-stubs/resources/views/users/index.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@
221221
<p>{{ __('Typography') }}</p>
222222
</a>
223223
</li>
224-
<li class = " active-pro">
225-
<a href="{{ route('page.index','upgrade') }}">
224+
<li class = "">
225+
<a href="{{ route('page.index','upgrade') }}" class="bg-info">
226226
<i class="now-ui-icons arrows-1_cloud-download-93"></i>
227227
<p>{{ __('Upgrade to PRO') }}</p>
228228
</a>
@@ -422,4 +422,4 @@
422422
@stack('js')
423423
</body>
424424

425-
</html>
425+
</html>

0 commit comments

Comments
 (0)