Currently seeking new career opportunities in web development, particularly with Laravel, Hire Me

Laravel accessing auth in Service Providers

David Carr

Laravel Framework Tutorials PHP & MySQL

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

 

Laravel Modules Your Logo Your Logo Your Logo

Become a sponsor

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

Sponsor

My Latest Book

Modular Laravel Book - Laravel: The Modular way

Learn how to build modular applications with Laravel Find out more

Subscribe to my newsletter

Subscribe and get my books and product announcements.

Learn Laravel with Laracasts

Faster Laravel Hosting

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