I\'m completely new to Laravel, MVC and templating engines in general.
I need to show certain navbar buttons and options if a user is logged in such as: Notifications, L
You can also use Auth::guest()
Auth::guest()
The Auth::guest() method returns true or false.
Example -
@if (Auth::guest()) Login Register @else {{ Auth::user()->name }} Logout @endif