cuongnx/laravel-repo-service-generator

Generate repository-service structure for Laravel with interface and binding

Installs: 60

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/cuongnx/laravel-repo-service-generator

v2.0.7 2026-01-20 15:59 UTC

This package is auto-updated.

Last update: 2026-01-20 16:26:00 UTC


README

โœ… Generate clean Repository-Service structure with interfaces, bindings, and optional MongoDB support for Laravel 11 and 12+

This library provides a powerful artisan command set to generate and manage Repository-Service architecture with optional binding, base classes, and multi-model support. It helps you follow a clean, testable architecture in Laravel projects.

๐Ÿงพ Version Information

Library Version v1.0.0
Laravel ^11.0, ^12.0
PHP Version >= 8.1
MongoDB Support Optional (--type=m) via mongodb/laravel-mongodb

๐Ÿ“š Table of Contents

โš™๏ธ โœ… Features

  • Generate Repository, Service, Interface automatically.
  • Optional Model generation (Eloquent or MongoDB).
  • Auto-bind/unbind to AppServiceProvider.
  • Middleware-safe service usage.
  • Reversible file generation (remove struct).
  • Extendable base classes.
  • Fast CLI operations.

โš™๏ธ Installation

composer require cuongnx/laravel-repo-service-generator

๐Ÿ“ฆ For MongoDB support:

composer require mongodb/laravel-mongodb

๐Ÿงฑ Create Full Structure (Model + Repo + Service)

php artisan cuongnx:make-struct Post

Options:

Flag Description
--model, --m Also generate the model class
--type= Model type: d = Eloquent (default), m = MongoDB
--no-bind Skip automatic binding in AppServiceProvider
--f, --force Overwrite existing files

๐Ÿ“Œ Example with MongoDB:

php artisan cuongnx:make-struct Product --m --type=m

This command will generate the following files and structure:

app/
โ”œโ”€โ”€ Models/
โ”‚   โ””โ”€โ”€ Post.php
โ”œโ”€โ”€ Repositories/
โ”‚   โ”œโ”€โ”€ Contracts/
โ”‚   โ”‚   โ””โ”€โ”€ PostRepositoryInterface.php
โ”‚   โ””โ”€โ”€ PostRepository.php
โ””โ”€โ”€ Services/
    โ”œโ”€โ”€ Contracts/
    โ”‚   โ””โ”€โ”€ PostServiceInterface.php
    โ””โ”€โ”€ PostService.php

File Descriptions:

  • app/Models/Post.php
    โ†’ The Eloquent or MongoDB model class for Post.

  • app/Repositories/Contracts/PostRepositoryInterface.php
    โ†’ Interface defining methods specific to the Post repository.

  • app/Repositories/PostRepository.php
    โ†’ Repository class implementing data access logic for Post.
    Extends BaseRepository and implements PostRepositoryInterface.

  • app/Services/Contracts/PostServiceInterface.php
    โ†’ Interface defining service-level business methods for Post.

  • app/Services/PostService.php
    โ†’ Service class implementing business logic related to Post.
    Extends BaseService and implements PostServiceInterface.

๐Ÿ“Œ If --no-bind is not provided, the following bindings will be added to AppServiceProvider:

$this->app->bind(
    \App\Repositories\Contracts\PostRepositoryInterface::class,
    \App\Repositories\PostRepository::class
);

$this->app->bind(
    \App\Services\Contracts\PostServiceInterface::class,
    \App\Services\PostService::class
);

๐Ÿงฑ Create Simple Service & Interface (Without implement BaseService)

php artisan cuongnx:make-service Custom

Options:

Flag Description
--no-bind Skip automatic binding in AppServiceProvider
--f, --force Overwrite existing files

This command will generate the following files and structure:

app/
โ””โ”€โ”€ Services/
    โ”œโ”€โ”€ Contracts/
    โ”‚   โ””โ”€โ”€ CustomServiceInterface.php
    โ””โ”€โ”€ CustomService.php

File Descriptions:

  • app/Services/Contracts/CustomServiceInterface.php
    โ†’ Defines custom methods for your Custom service logic.

  • app/Services/CustomService.php
    โ†’ Contains business logic related to Custom, implements CustomServiceInterface.

๐Ÿ”Œ Bindings

Bind both repository & service:
php artisan cuongnx:bind-model User

Options:

Flag Description
--only=repo Bind only repository
--only=service Bind only service

Bind individually:

php artisan cuongnx:bind-repo User
php artisan cuongnx:bind-service User

โŒ Unbind Bindings

```bash php artisan cuongnx:unbind-model User ```

Options:

Flag Description
--only=repo Unbind only repository
--only=service Unbind only service

Or directly:

php artisan cuongnx:unbind-repo User
php artisan cuongnx:unbind-service User

๐Ÿงน Remove Structures

Remove all (repo + service + optional model):
php artisan cuongnx:remove-struct Post --model

Options:

Flag Description
--model, -m Also remove model
--no-unbind Do not unbind from AppServiceProvider

Remove only service:

php artisan cuongnx:remove-service Post

๐Ÿ—„๏ธ BaseRepository Methods

All repositories extend BaseRepository and automatically gain access to these common data methods.

๐Ÿ” Read Methods

Method Description
getAll(array $relations = [], array|string|null $orderBy = null) Get all records with optional relationships and ordering
get(?array $fields = null, array $relations = [], array|string|null $orderBy = null) Get all records with selected fields, relationships, and ordering
find($id, ?array $fields = null, array $relations = []) Find by ID with optional field selection and relationships
findBy(string $key, $value, ?array $fields = null, array $relations = [], array|string|null $orderBy = null) Find a single record by key-value
findByAttributes(array $conditions, ?array $fields = null, array $relations = [], array|string|null $orderBy = null) Find a single record by multiple attributes
getBy(string $key, $value, ?array $fields = null, array $relations = [], array|string|null $orderBy = null) Get multiple records by key-value
getByAttributes(array $conditions, ?array $fields = null, array $relations = [], array|string|null $orderBy = null) Get multiple records by attributes
withTrashed(array $conditions = [], ?array $fields = null, array $relations = []) Get including soft-deleted records
onlyTrashed(array $conditions = [], ?array $fields = null, array $relations = []) Get only soft-deleted records

๐Ÿ“Š Pagination

Method Description
paginate(int $perPage = 15, array $conditions = [], ?array $fields = null, array $relations = []) Laravel paginated list with filters and relationships
paginateCustom(array $conditions = [], ?array $fields = null, array $relations = [], array|string|null $orderBy = null, int $page = 1, int $limit = 10) Custom pagination returning array with data, current_page, per_page, total, last_page

๐Ÿ“ˆ Aggregate Methods

Method Description
countBy(array $conditions = []): int Count records by conditions
sum(string $column, array $conditions = []): float|int Sum a column value with optional conditions
avg(string $column, array $conditions = []): ?float Average of a column value
max(string $column, array $conditions = []): float|int|null Maximum value of a column
min(string $column, array $conditions = []): float|int|null Minimum value of a column

๐Ÿ”ง Utility Methods

Method Description
pluck(string $column, ?string $key = null, array $conditions = []) Pluck values from a column
chunk(int $count, callable $callback, array $conditions = []): bool Process records in chunks
increment(string $column, int $amount = 1, array $conditions = [], array $extra = []): int Increment column value
decrement(string $column, int $amount = 1, array $conditions = [], array $extra = []): int Decrement column value

โœ… Existence Checks

Method Description
existsBy(string $field, $value): bool Check if a value exists for a field
existsByAttributes(array $conditions): bool Check existence by multiple attributes

๐Ÿ“ Create/Update Methods

Method Description
create(array $data) Create a new record
update($id, array $data) Update by ID
updateFields($model, array $fields, array $except = []) Update specific fields on a model instance
firstOrCreate(array $attributes, array $values = [], array $relations = []) Find or create a record, returns [Model, bool $wasCreated]
firstOrNew(array $attributes, array $values = [], array $relations = []) Find or instantiate (without saving), returns [Model, bool $isNew]
createOrUpdate(array $attributes, array $values = [], ?array $checkFields = null) Create or update with field tracking, returns [Model, bool $wasCreated, bool $wasUpdated, array $changedFields]
updateOrCreate(array $attributes, array $values = [], array $relations = []) Find and update or create, returns [Model, bool $wasCreated]

โŒ Delete / Restore Methods

Method Description
delete($id) Soft delete by ID
deleteBy(array $conditions): int Delete by conditions, returns number of deleted records
restore($id): bool Restore soft-deleted record
forceDelete($id): bool Permanently delete record

๐Ÿง  BaseService Methods

All services extend BaseService and delegate to the repository methods. The service layer is where you implement business logic on top of the repository.

Services have access to all BaseRepository methods through their repository instance. You can add custom business logic methods in your service classes.

๐Ÿ” Advanced Query Conditions

The BaseRepository supports flexible query conditions for both Eloquent and MongoDB.

1๏ธโƒฃ Simple Conditions

$conditions = [
    'status' => 'active',
    'user_id' => 123
];

$posts = $postRepo->getByAttributes($conditions);

2๏ธโƒฃ Comparison Operators

$conditions = [
    'price' => ['>=', 100],
    'stock' => ['<', 50],
    'rating' => ['>', 4.5]
];

$products = $productRepo->getByAttributes($conditions);

3๏ธโƒฃ MongoDB Operators

// Using MongoDB $gte, $lte operators
$conditions = [
    'expired_at' => [
        '$gte' => now(),
        '$lte' => now()->addDays(30)
    ]
];

// Using MongoDB $elemMatch for array fields
$conditions = [
    'tags' => [
        '$elemMatch' => ['name' => 'Laravel', 'type' => 'framework']
    ]
];

4๏ธโƒฃ Date Range Queries

// Using from/to syntax
$conditions = [
    'created_at' => [
        'from' => now()->subDays(7),
        'to' => now()
    ]
];

// Using min/max syntax
$conditions = [
    'price' => [
        'min' => 100,
        'max' => 1000
    ]
];

// Using between operator
$conditions = [
    'age' => ['between', [18, 65]]
];

5๏ธโƒฃ IN / NOT IN Queries

$conditions = [
    'status' => ['in', ['active', 'pending', 'processing']],
    'category_id' => ['not_in', [5, 10, 15]]
];

6๏ธโƒฃ NULL Checks

$conditions = [
    'deleted_at' => ['null'],
    'email_verified_at' => ['not_null']
];

7๏ธโƒฃ Combined Complex Queries

$conditions = [
    'status' => 'active',
    'price' => [
        '$gte' => 100,
        '$lte' => 1000
    ],
    'category_id' => ['in', [1, 2, 3]],
    'created_at' => [
        'from' => now()->subMonth(),
        'to' => now()
    ],
    'tags' => [
        '$elemMatch' => ['featured' => true]
    ]
];

$products = $productRepo->getByAttributes(
    conditions: $conditions,
    fields: ['id', 'name', 'price'],
    relations: ['category', 'images'],
    orderBy: ['created_at' => 'desc']
);

8๏ธโƒฃ Ordering Results

// Simple ordering (string)
$orderBy = 'created_at'; // defaults to 'asc'

// Single field ordering (array)
$orderBy = ['created_at' => 'desc'];

// Multiple field ordering
$orderBy = [
    'status' => 'asc',
    'created_at' => 'desc'
];

// Alternative syntax with indexed arrays
$orderBy = [
    ['status', 'asc'],
    ['created_at', 'desc']
];

Real-World Examples

Get Active Products Expiring Soon

$products = $productRepo->getByAttributes([
    'status' => 'active',
    'expired_at' => [
        '$gte' => now(),
        '$lte' => now()->addDays(30)
    ]
], orderBy: ['expired_at' => 'asc']);

Get Orders from Last Month in Price Range

$orders = $orderRepo->getByAttributes([
    'total_amount' => [
        'min' => 1000,
        'max' => 5000
    ],
    'created_at' => [
        'from' => now()->subMonth()->startOfMonth(),
        'to' => now()->subMonth()->endOfMonth()
    ],
    'status' => ['in', ['completed', 'shipped']]
], relations: ['user', 'items']);

MongoDB Array Query with Tags

$posts = $postRepo->getByAttributes([
    'published' => true,
    'tags' => [
        '$elemMatch' => [
            'name' => 'Laravel',
            'type' => 'framework'
        ]
    ],
    'views' => ['>=', 1000]
], orderBy: ['views' => 'desc']);

๐Ÿ“ Folder Structure

app/
โ”œโ”€โ”€ Repositories/
โ”‚   โ”œโ”€โ”€ Contracts/
โ”‚   โ”‚   โ”œโ”€โ”€ BaseRepositoryInterface.php
โ”‚   โ”‚   โ”œโ”€โ”€ UserRepositoryInterface.php
โ”‚   โ”‚   โ””โ”€โ”€ PostRepositoryInterface.php
โ”‚   โ”œโ”€โ”€ BaseRepository.php
โ”‚   โ”œโ”€โ”€ UserRepository.php
โ”‚   โ””โ”€โ”€ PostRepository.php
โ”œโ”€โ”€ Services/
โ”‚   โ”œโ”€โ”€ Contracts/
โ”‚   โ”‚   โ”œโ”€โ”€ BaseServiceInterface.php
โ”‚   โ”‚   โ”œโ”€โ”€ CustomServiceInterface.php
โ”‚   โ”‚   โ”œโ”€โ”€ UserServiceInterface.php
โ”‚   โ”‚   โ””โ”€โ”€ PostServiceInterface.php
โ”‚   โ”œโ”€โ”€ BaseService.php
โ”‚   โ”œโ”€โ”€ CustomService.php
โ”‚   โ”œโ”€โ”€ UserService.php
โ”‚   โ””โ”€โ”€ PostService.php
โ””โ”€โ”€ Models/
    โ”œโ”€โ”€ User.php
    โ””โ”€โ”€ Post.php

๐Ÿ“ฌ Contact

๐Ÿ“ License