app->make('Laraecart\Filter\Interfaces\FilterRepositoryInterface'); return $filterrepo->findorNew($filter); }); } if (Request::is('*/filter/filter_group/*')) { Route::bind('filter_group', function ($filter_group) { $filter_grouprepo = $this->app->make('Laraecart\Filter\Interfaces\FilterGroupRepositoryInterface'); return $filter_grouprepo->findorNew($filter_group); }); } } /** * Define the routes for the package. * * @return void */ public function map() { $this->mapWebRoutes(); } /** * Define the "web" routes for the package. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapWebRoutes() { if (request()->segment(1) == 'api' || request()->segment(2) == 'api') { return; } Route::group([ 'middleware' => 'web', 'namespace' => $this->namespace, 'prefix' => trans_setlocale(), ], function ($router) { require (__DIR__ . '/../../routes/web.php'); }); } }