raitone / blook
There is no license information available for the latest version (0.6.0) of this package.
A lightweight interface to work on your laravel components in an isolated way.
0.6.0
2023-10-25 09:40 UTC
README
A lightweight interface to list, showcase and isolate your laravel components and work on them efficiently.
Installation
Install via composer
composer require raitone/blook
Add provider to your config/app.php file in providers
$providers = [
...
Raitone\Blook\Providers\BlookProvider::class,
...
]
Publish the config/blook.php file and @definitions.php files.
php artisan vendor:publish --provider="Raitone\Blook\Providers\BlookProvider"
Clean route and config
php artisan route:cache
php artisan config:cache
You should now be able to navigate on localhost/blook and work on your components !