You could make a go-between-filter to handle the OR.
See http://stackoverflow.com/questions/23224096/how-to-apply-multiple-filters-on-laravel-4-route-group for an example.
Snip from that page ...
Route::filter('csrf-or-auth', function ()
{
$value = call_user_func('csrfFilter');
if ($value) return $value;
else return call_user_func('authFilter');
});
Route::group(array('before' => 'csrf-or-auth', function() { ...
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community