Laravel accessing auth in Service Providers

David Carr

1 min read - 18th Oct, 2018

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');
        });            
    }
});

 

0 comments
Add a comment

Copyright © 2006 - 2024 DC Blog - All rights reserved.