publishes([ __DIR__.'/Config/config.php' => config_path('order.php'), ]); $this->loadMigrationsFrom(__DIR__ . '/Migrations'); } /** * Register bindings in the container. * * @return void */ public function register() { $this->mergeConfigFrom( __DIR__.'/Config/config.php', 'order' ); $this->app->register(RouteServiceProvider::class); $this->app->register(EventServiceProvider::class); } public static function getAdminMenu() { return [ ]; } }