fatihirday/repository-make

v0.0.3 2024-08-20 17:04 UTC

This package is auto-updated.

Last update: 2025-03-20 18:30:46 UTC


README

Laravel Reposiyory

Installation

  1. Run composer command to install the package
composer require fatihirday/repository-make
  1. Publish the config and migration files.
php artisan vendor:publish --provider="Fatihirday\RepositoryMake\Providers\RepositoryServiceProvider"
  • Response
* config/repository.php

Configuration

  1. Config repository File
return [
    'folder' => 'Services',
];
Config Des
folder Interface and Repository path

Make Repository and Interface

php artisan make:repository DemoRepository