Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelAndish committed Oct 17, 2019
2 parents 03db688 + cd7e5b0 commit a33dcc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Entities/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ class User extends Authenticatable
{
use Notifiable, HasRoles, SoftDeletes;

protected $guard_name = 'web';

protected $fillable = [
'first_name',
'last_name',
Expand All @@ -23,7 +25,6 @@ class User extends Authenticatable
'mobile_verified',
];


/**
* @param $password
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Resource/views/mekaeils-package/layouts/top-nav.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@
</div>
</li> --}}
<li class="nav-item nav-logout d-none d-lg-block">
<a class="nav-link" href="#">
<i class="mdi mdi-power"></i>
<a class="nav-link" href="{{ url(config('laravel_user_management.auth.logout_url')) }}">
<i class="mdi mdi-power"></i>
</a>
</li>
</ul>
Expand Down

0 comments on commit a33dcc9

Please sign in to comment.