skip to Main Content

Laravel – Disable View Composer for Blade TestView?

The client wants the layouts.sidebar.blade.php to have a link for users with a certain role. The AppServiceProvider boots a NotificationComposer for all (*) views. The NotificationComposer has the following code $view->with('unreadNotificationCount', count(request()->user()->unreadNotifications)); I want to write a test like the…

VIEW QUESTION
Back To Top
Search