app->bind( StateRepositoryInterface::class, StateRepository::class ); $this->app->bind( ShippingInterface::class, ShippoShipmentRepository::class ); $this->app->bind( BrandRepositoryInterface::class, BrandRepository::class ); $this->app->bind( ProductAttributeRepositoryInterface::class, ProductAttributeRepository::class ); $this->app->bind( AttributeValueRepositoryInterface::class, AttributeValueRepository::class ); $this->app->bind( AttributeRepositoryInterface::class, AttributeRepository::class ); $this->app->bind( EmployeeRepositoryInterface::class, EmployeeRepository::class ); $this->app->bind( CustomerRepositoryInterface::class, CustomerRepository::class ); $this->app->bind( ProductRepositoryInterface::class, ProductRepository::class ); $this->app->bind( CategoryRepositoryInterface::class, CategoryRepository::class ); $this->app->bind( AddressRepositoryInterface::class, AddressRepository::class ); $this->app->bind( CountryRepositoryInterface::class, CountryRepository::class ); $this->app->bind( ProvinceRepositoryInterface::class, ProvinceRepository::class ); $this->app->bind( CityRepositoryInterface::class, CityRepository::class ); $this->app->bind( OrderRepositoryInterface::class, OrderRepository::class ); $this->app->bind( OrderStatusRepositoryInterface::class, OrderStatusRepository::class ); $this->app->bind( CourierRepositoryInterface::class, CourierRepository::class ); $this->app->bind( CartRepositoryInterface::class, CartRepository::class ); $this->app->bind( RoleRepositoryInterface::class, RoleRepository::class ); $this->app->bind( PermissionRepositoryInterface::class, PermissionRepository::class ); } }