composer require miladimos/laravel-repository
php artisan repository:install
php artisan make:repository {ModelName}
php php artisan make:repository Tag
this create a TagRepository and TagEloquentRepositoryInterface
next you must add Repository to RepositoryServiceProvider in repositories property like:
protected $repositories = [
[
TagEloquentRepositoryInterface::class,
TagRepository::class,
],
];
next in your controller add this:
private $tagRepo;
public function __construct(TagEloquentRepositoryInterface $tagRepo)
{
$this->tagRepo = $tagRepo;
}
add custom methods in TagEloquentRepositoryInterface and implement them.
you must have a provider with below content and register it:
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class RepositoryServiceProvider extends ServiceProvider
{
/**
* define your repositories here
*/
protected $repositories = [
[
ModelRepositoryInterface::class,
Model::class
],
];
public function register()
{
foreach ($this->repositories as $repository) {
$this->app->bind($repository[0], $repository[1]);
}
}
}
or create it automatically by below command:
php artisan make:repository:provider