I am trying to use multiple middleware in a route as follows
Route::get('devices', ['as' => 'devices.index', 'uses' => 'deviceController@index', 'middleware' => ['permission:manage_devices', 'permission:device.view']]);
This will implement AND
logic between the two middlewares. I want to implement an 'OR' Logic but could not find any help.