LaRecipe comes with helpful Artisan commands that can be triggered to handle boring stuff out of the box.
After requiring the package via composer
, all you have to do is to run a single command which will take care of publishing the needed assets and configurations.
php artisan larecipe:install
After running the command you will find a few changes in your Laravel app folders: the larecipe.php
config file will be added to your config
directory and the basic setup for writing documentation will be added to the resources/docs
directory. That happened internally by calling larecipe:docs
command inside larecipe:install
command.
{warning} This structure is based on the default path of the docs. Yours will be different if you change the docs
path
.
.
├─ config
│ └─ larecipe.php
└─ resources
└─ docs
└─ 1.0
│─ index.md
└─ overview.md
This command is a bit more complicated than larecipe:install
command. However, all you have to know is the behavior of this command and what you expect from it.
php artisan larecipe:docs
{primary} The workflow of this command is:
config/larecipe
.index.md
for the given version if not exists.overview.md
for the given version if not exists.