Advanced Guides
Extending Documentation
If you've added your own Laravel Models or Filament Resources and would like to include guides for instructing your CMS users on how to use them, you can extend Autoload's built-in Documentation with your own pages.
Example
1<?php 2 3// config/autoload_documentation.php 4return [ 5 'UNIQUE_DOCUMENTATION_PAGE_ROUTE' => [ 6 'title' => 'DOCUMENTATION PAGE TITLE', 7 'description' => 'Short description of the documentation page', 8 'sections' => [ 9 'UNIQUE_SUBTITLE_ID' => [10 'title' => 'SUBTITLE',11 'html' => '12 <p>HTML embedded documentation.</p>13 ',14 ],15 ],16 ],17];