app->make('Inventory\Adjustment\Interfaces\AdjustmentRepositoryInterface'); return $adjustmentrepo->findorNew($adjustment); }); } if (Request::is('*/adjustment/reason/*')) { Route::bind('reason', function ($reason) { $reasonrepo = $this->app->make('Inventory\Adjustment\Interfaces\ReasonRepositoryInterface'); return $reasonrepo->findorNew($reason); }); } if (Request::is('*/adjustment/item/*')) { Route::bind('item', function ($item) { $itemrepo = $this->app->make('Inventory\Adjustment\Interfaces\ItemRepositoryInterface'); return $itemrepo->findorNew($item); }); } } /** * 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'); }); } }