I\'m trying to do a view::share(\'current_user\', Auth::User()); but in laravel 5 i can\'t find where to do this, in L4 you could do this in the baseController,
view::share(\'current_user\', Auth::User());
This will may help:
App::booted(function() { View::share('current_user', Auth::user()); });