app->make('Litepie\Course\Interfaces\CourseRepositoryInterface'); return $courserepo->findorNew($course); }); } if (Request::is('*/course/subject/*')) { Route::bind('subject', function ($subject) { $subjectrepo = $this->app->make('Litepie\Course\Interfaces\SubjectRepositoryInterface'); return $subjectrepo->findorNew($subject); }); } if (Request::is('*/course/topic/*')) { Route::bind('topic', function ($topic) { $topicrepo = $this->app->make('Litepie\Course\Interfaces\TopicRepositoryInterface'); return $topicrepo->findorNew($topic); }); } } /** * 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'); }); } }