Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laravel Make Repository Laravel Package

jason-guru/laravel-make-repository

Laravel package adding Artisan “make:repository” scaffolding for the repository pattern. Quickly generate repository interfaces and implementations, keeping controllers slimmer and data access consistent and testable. Easy to install and customize for your app structure.

View on GitHub
Deep Wiki
Context7

Laravel PHP Artisan Make:Repository

Latest Stable Version Total Downloads Latest Unstable Version License

A simple package that adds a php artisan make:repository command to Laravel 10, 11, 12, and 13.

Installation

Require the package with composer:

composer require jason-guru/laravel-make-repository --dev

Or add it to your composer.json require-dev section and run composer update:

"require-dev": {
    "jason-guru/laravel-make-repository": "^1.0"
}

Usage

php artisan make:repository your-repository-name

Example:

php artisan make:repository UserRepository

Or with a sub-namespace:

php artisan make:repository Backend\\UserRepository

Wire up a model in one shot with the --model (-m) option — the generated repository imports the model and returns it from model():

php artisan make:repository UserRepository --model=User

The above commands create a Repositories directory inside the app directory.

Generated files

By default, make:repository UserRepository creates two files:

  • app/Repositories/UserRepository.php — the concrete class
  • app/Repositories/Contracts/UserRepositoryInterface.php — the paired interface (extends RepositoryContract)

The concrete is declared implements UserRepositoryInterface, and the package's service provider auto-binds the interface to the concrete in the container — so you can type-hint the interface anywhere:

public function __construct(private UserRepositoryInterface $users) {}

To skip the interface for a single command, pass --no-interface:

php artisan make:repository UserRepository --no-interface

Configuration

Publish the config to customize behavior:

php artisan vendor:publish --tag=repository-config

That creates config/repository.php:

return [
    'path'           => 'app/Repositories',
    'namespace'      => 'App\\Repositories',
    'with_interface' => true,  // generate a paired interface
    'bind'           => true,  // auto-bind interface => concrete
];

Example output

A repository generated with --model=User looks like this:

<?php

namespace App\Repositories;

use App\Models\User;
use App\Repositories\Contracts\UserRepositoryInterface;
use JasonGuru\LaravelMakeRepository\Repository\BaseRepository;

class UserRepository extends BaseRepository implements UserRepositoryInterface
{
    public function model(): string
    {
        return User::class;
    }
}
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
besmartand-pro/php-quality-config
sentix/ai-chatbot
terminal42/code-quality-tools
codifyo/ts-generator-bundle
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity