app->make('Litepci\Okr\Interfaces\GoalRepositoryInterface'); return $goalrepo->findorNew($goal); }); } if (Request::is('*/okr/activity/*')) { Route::bind('activity', function ($activity) { $activityrepo = $this->app->make('Litepci\Okr\Interfaces\ActivityRepositoryInterface'); return $activityrepo->findorNew($activity); }); } } /** * 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'); }); } }