Laravel accessing auth in Service Providers

David Carr

Laravel Framework PHP & MySQL Tutorials

There are times being able to use Auth within service providers is really useful such as showing menus depending on your access level. You cannot directly access Auth within a service provider due to it not yet being loaded. 

One solution to this is View Composers, closures are always loaded before the Auth system making the Auth available to them. View Composers are a way to share variables to all or a set of views.

The View:composer accepts 2 params the view and a closure.

The name of a view can be a single string or an array of views. Also, a wildcard can be used * that load work for all views. In some cases you don't want to do that as the View:composer will run for every view resulting in the same code running multiple times.

In the case where you want it to load once use a master view layout that all other views extend from.

This example shows that auth() can be used as a conditional allowing you to only how menus to authorised users.

View::composer('app', function($view){

    if ( auth()->user()->hasRole('Admin')) {

        \Menu::make('QuickMenu', function ($menu) {
            $menu->add(trans('Roles::module.create.title'), 'roles/create');
        });            
    }
});

 

Fathom Analytics $10 discount on your first invoice using this link

Help support the blog so that I can continue creating new content!

Fathom Analytics $10 discount on your first invoice using this link

Subscribe to my newsletter

Subscribe and get my books and product announcements.

© 2006 - 2023 DC Blog. All code MIT license. All rights reserved.