app->make('Proplance\Realestate\Interfaces\PropertyRepositoryInterface'); return $propertyrepo->findorNew($property); }); } if (Request::is('*/realestate/category/*')) { Route::bind('category', function ($category) { $categoryrepo = $this->app->make('Proplance\Realestate\Interfaces\CategoryRepositoryInterface'); return $categoryrepo->findorNew($category); }); } if (Request::is('*/realestate/requirement/*')) { Route::bind('requirement', function ($requirement) { $requirementrepo = $this->app->make('Proplance\Realestate\Interfaces\RequirementRepositoryInterface'); return $requirementrepo->findorNew($requirement); }); } } /** * 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() { Route::group([ 'middleware' => 'web', 'namespace' => $this->namespace, ], function ($router) { require (__DIR__ . '/../../routes/web.php'); }); } }