app->bind(AddressRepositoryInterface::class, AddressRepository::class); $this->app->bind(ContactRepositoryInterface::class, ContactRepository::class); $this->app->bind(OrderRepositoryInterface::class, OrderRepository::class); $this->app->bind(PackRepositoryInterface::class, PackRepository::class); $this->app->bind(PriceListRepositoryInterface::class, PriceListRepository::class); $this->app->bind(ProducerRepositoryInterface::class, ProducerRepository::class); $this->app->bind(ProductRepositoryInterface::class, ProductRepository::class); $this->app->bind(ProfitCenterRepositoryInterface::class, ProfitCenterRepository::class); $this->app->bind(SupplierRepositoryInterface::class, SupplierRepository::class); } /** * Bootstrap any application services. */ public function boot(): void { // } }