With easy repository, you can have the power of the repository pattern, without having to write too much code altogether. The package automatically binds the interfaces to the implementations, all you have to do is change in the configuration which implementation is being used at the moment!
- Minimum PHP ^8.1
You can install the package via composer for latest version
$ composer require yaza/laravel-repository-service
Specific Version :
Laravel Version | Package Version |
---|---|
10 | 4.x |
9 | 3.2 |
$ composer require yaza/laravel-repository-service:"^3.2"
Publish the config file with (Important):
php artisan vendor:publish --provider="LaravelEasyRepository\LaravelEasyRepositoryServiceProvider" --tag="easy-repository-config"
You can also create only the repository, or service, or both with artisan:
php artisan make:repository User
// or
php artisan make:repository UserRepository
// or create together with a service
php artisan make:repository User --service
// or
php artisan make:repository UserRepository --service
// or create a service separately
php artisan make:service User
// or
php artisan make:service UserService
// or
php artisan make:service UserService --repository
// create service for api template
php artisan make:service UserService --api
Add this config to AppServiceProvider :
$this->app->extend(Interface::class, function ($service, $app) {
return new NewImplement($service);
});
Go to guide Click Here
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.