behind/blucid-console is a Laravel package for extend lucid console commands..
It currently has 0 GitHub stars and 23 downloads on Packagist (latest version 0.1.0).
Install it with composer require behind/blucid-console.
Discover more Laravel packages by behind
or browse all Laravel packages to compare alternatives.
Last updated
Expanding Lucid console capabilities for Lucid Architecture.
The console ships with a command line interface called blucid that you can find in vendor/bin/blucid and use as
blucid make:model Video
blucid make:policy Post
blucid make:request UpdatePost
To be able to address the
blucidcli directly you need to have./vendor/binas part of your$PATH. To do that, put this in your shell profile (~/.bash_profile, ~/.zshrc, ~/bashrc)export PATH="$PATH:./vendor/bin"
help Displays help for a commandlist Lists commandsmake:model Create a new resource Controller class in a servicemake:policy Create a new Feature in a servicemake:request Create a new Job in a domaindelete:model Delete an existing Feature in a servicedelete:policy Delete an existing Job in a domaindelete:request Delete an existing Servicemake:model <model>make:policy <policy>make:request <request>delete:model <model>delete:policy <policy>delete:request <request>