Skip to content

Commit bbc556e

Browse files
2 parents 6b23d30 + 09e5274 commit bbc556e

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ All notable changes to `Black Dashboard` frontend preset for Laravel will be doc
1919
## Version 1.0.4 - 2019-09-23
2020

2121
- Update to Laravel 6.x
22+
23+
## Version 1.0.5 - 2020-03-18
24+
25+
- Update to Laravel 7.x
2226

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You can access the dashboard either by using the "**Dashboard**" link in the lef
6767

6868
You have the option to edit the current logged in user's profile (change name, email and password). To access this page just click the "**User profile**" link in the left sidebar or by adding **/profile** in the url.
6969

70-
The `App\Htttp\Controlers\ProfileController` handles the update of the user information.
70+
The `App\Http\Controllers\ProfileController` handles the update of the user information.
7171

7272
```
7373
public function update(ProfileRequest $request)

src/black-stubs/resources/views/layouts/navbars/navs/auth.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<nav class="navbar navbar-expand-lg navbar-absolute navbar-transparent">
22
<div class="container-fluid">
3-
<div class="navbar-wrapper">
3+
<div class="navbar-wrapper d-none">
44
<div class="navbar-toggle d-inline">
55
<button type="button" class="navbar-toggler">
66
<span class="navbar-toggler-bar bar1"></span>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<p>{{ _('RTL Support') }}</p>
131131
</a>
132132
</li>
133-
<li>
133+
<li class=" {{ $pageSlug == 'upgrade' ? 'active' : '' }} bg-info">
134134
<a href="{{ route('pages.upgrade') }}">
135135
<i class="tim-icons icon-spaceship"></i>
136136
<p>{{ _('Upgrade to PRO') }}</p>
@@ -528,4 +528,4 @@
528528
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=111649226022273&ev=PageView&noscript=1" />
529529
</noscript>
530530
</body>
531-
</html>
531+
</html>

0 commit comments

Comments
 (0)