Download the PHP package hariadi/laravel-boilerplate-generator without Composer
On this page you can find all versions of the php package hariadi/laravel-boilerplate-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hariadi/laravel-boilerplate-generator
More information about hariadi/laravel-boilerplate-generator
Files in hariadi/laravel-boilerplate-generator
Package laravel-boilerplate-generator
Short Description Generate Model, attribute, relation, scope trait and repository for Laravel Boilerplate
License MIT
Homepage https://github.com/hariadi/laravel-boilerplate-generator
Informations about the package laravel-boilerplate-generator
Laravel Boilerplate Generator Commands
Generate Model, attribute, relation, scope trait and repository for Laravel 5 Boilerplate via console command
Install
Laravel 5.7+
Package already support auto discover and ready to use.
Laravel 5.4
Register service provider by adding to your config/app.php
:
If you want this lib only for dev, you can add the following code to your app/Providers/AppServiceProvider.php
file, within the register()
method:
Show command list:
You will see:
Usage
Generate Model
Options
-N|--namespace
: The namespace class. Output strategy will follow this namespace
Generate ModelName.php
under Models
directory, and traits for ModelNameAttribute
, ModelNameRelationship
, ModelNameScope
under Models\ModelName\Traits
directory.
Generate Attribute
Options
-N|--namespace
: The namespace class. Output strategy will follow this namespace
Generate ModelNameAttribute.php
under Models/Traits/Attribute
directory.
Generate Method
Options
-N|--namespace
: The namespace class. Output strategy will follow this namespace
Generate ModelNameMethod.php
under Models/Traits/Method
directory.
Generate Relation
Options
-N|--namespace
: The namespace class. Output strategy will follow this namespace
Generate ModelNameRelationship.php
under Models/Traits/Relationship
directory.
Generate Scope
Options
-N|--namespace
: The namespace class. Output strategy will follow this namespace
Generate ModelNameScope.php
under Models/Traits/Scope
directory.
Generate Repository
Options
-d|--disable-softdelete
: Disable softdelete method (forceDelete
andrestore
)
Generate ModelNameRepository.php
under app/Repositories/Event
directory.
Output strategy
Without --namespace
option
Example files and directories output:
With --namespace
option
Generated combined in given namspace option. Example files and directories output:
License
The Laravel Boilerplate Generator command is open-sourced software licensed under the MIT license
All versions of laravel-boilerplate-generator with dependencies
illuminate/support Version 5.7.*|5.8.*|^6.0|^7.0
illuminate/filesystem Version 5.7.*|5.8.*|^6.0|^7.0