raitone / blook
A lightweight interface to work on your laravel components in an isolated way.
Installs: 940
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
pkg:composer/raitone/blook
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 !