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
This should help :
@extends(Auth::check() ? 'partials.navbarlogged' : 'partials.navbar')
The Auth::chek() sees whether the user is logged in or not and returns a boolean.