├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Command └── CreateRepository.php ├── EntityRepository.php ├── Interfaces └── EntityManagerInterface.php ├── Providers └── AppServiceProvider.php ├── Repository.php └── config └── repository.php /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/composer.json -------------------------------------------------------------------------------- /src/Command/CreateRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/src/Command/CreateRepository.php -------------------------------------------------------------------------------- /src/EntityRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/src/EntityRepository.php -------------------------------------------------------------------------------- /src/Interfaces/EntityManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/src/Interfaces/EntityManagerInterface.php -------------------------------------------------------------------------------- /src/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/src/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /src/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/src/Repository.php -------------------------------------------------------------------------------- /src/config/repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbikash/laravel-repository/HEAD/src/config/repository.php --------------------------------------------------------------------------------