// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
syaaraa.kodsolutions.net
/
app
/
Providers
[ PARENT ]
EDIT :: RepositoryServiceProvider.php
<?php namespace App\Providers; use App\Repositories\CRUDRepository; use App\Repositories\PageRepository; use App\Repositories\UserRepository; use App\Repositories\AdminRepository; use App\Repositories\ContentRepository; use App\Repositories\SettingRepository; use Illuminate\Support\ServiceProvider; use App\Interfaces\CRUDRepositoryInterface; use App\Interfaces\PageRepositoryInterface; use App\Interfaces\UserRepositoryInterface; use App\Interfaces\AdminRepositoryInterface; use App\Interfaces\ContentRepositoryInterface; use App\Interfaces\SettingRepositoryInterface; class RepositoryServiceProvider extends ServiceProvider { /** * Register services. * * @return void */ public function register() { // $this->app->bind(ContentRepositoryInterface::class, ContentRepository::class); $this->app->bind(SettingRepositoryInterface::class, SettingRepository::class); $this->app->bind(AdminRepositoryInterface::class, AdminRepository::class); $this->app->bind(UserRepositoryInterface::class, UserRepository::class); $this->app->bind(CRUDRepositoryInterface::class, CRUDRepository::class); $this->app->bind(PageRepositoryInterface::class, PageRepository::class); } /** * Bootstrap services. * * @return void */ public function boot() { // } }
SAVE
CANCEL