jcadima
6/19/2018 - 3:24 PM

Laravel Constructor Middleware exception

<?php

// protect all methods in this class with Middleware admin 
// except userBugList() method

public function __construct() { 
    $this->middleware('admin', ['except' => ['create', 'store', 'userBugList']]); 
}