Laravel Packages

Generate Facade Docs Automatically in Your Laravel App

Published
Generate Facade Docs Automatically in Your Laravel App image

The Laravel framework has a Facade Documentor package that keeps Laravel's Facade docblocks updated, and now developers can have the same experience in their Laravel applications with Autodoc Facades by Steve Bauman:

# Generate docs for all facades found in the `app` folder
php artisan autodoc:facades app
 
# Or specify a few paths
php artisan autodoc:facades app/Services/Facades app/Api/Facades
 
# Only a specific facade
php artisan autodoc:facades app --only App\Facades\Service
 
# Everything in the app folder except one
php artisan autodoc:facades app --except App\Facades\Service

Keeping annotations up to date makes it easier to see at a glance what methods are provided via the Facade's underlying service, and intelligent editors can better auto-complete method names when documented in this way.

To get started with this package, including the source code and installation instructions, check it out on GitHub at stevebauman/autodoc-facades.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
PayZephyr: One Payment API for Stripe, Paystack, and PayPal image

PayZephyr: One Payment API for Stripe, Paystack, and PayPal

Read article
Bifrost Turns One With AI Builds and New Workflows image

Bifrost Turns One With AI Builds and New Workflows

Read article
Preview Blade Templates in macOS Finder with Quick Blade image

Preview Blade Templates in macOS Finder with Quick Blade

Read article
Artisan Debugging Commands in Laravel Telescope 5.24.0 image

Artisan Debugging Commands in Laravel Telescope 5.24.0

Read article
Queue totalSize() and JobInterrupted Event in Laravel 13.31 image

Queue totalSize() and JobInterrupted Event in Laravel 13.31

Read article
Find Unexpected Test Inputs with Fuzz for Pest image

Find Unexpected Test Inputs with Fuzz for Pest

Read article