/laravel-repository

Laravel / Lumen Repository pattern [Alpha version]

Primary LanguagePHP

برای نصب در مسیر روت پروژه خود دستور زیر را در ریشه پروژه اجرا کنید

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