Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 557 Bytes

readme.md

File metadata and controls

24 lines (20 loc) · 557 Bytes

Reference Generator

Reference Generator for Laravel Applications

Installation

Step 1: Install Through Composer

composer require codingphase/reference-generator

Step 2: Register Service Provider

Add your new provider to the providers array of config/app.php:

  'providers' => [
      // ...
      CodingPhase\ReferenceGenerator\ReferenceGeneratorServiceProvider::class,
      // ...
  ],

Publish config

php artisan vendor:publish --provider="CodingPhase\ReferenceGenerator\ReferenceGeneratorServiceProvider"