caffeinated / widgets
Laravel 5 Widgets
Installs: 6 066
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 2
Forks: 6
Open Issues: 1
Requires
- php: >=5.5.9
- illuminate/config: 5.1.*|5.2.*
- illuminate/support: 5.1.*|5.2.*
Suggests
- caffeinated/sapling: Laravel 5 Twig integration package
This package is auto-updated.
Last update: 2020-06-06 19:11:53 UTC
README
Caffeinated Widgets
Easily create reusable widget components to be used throughout your Laravel application. Widgets are very similar to Laravel's view composers, but in more of a dedicated sense.
The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code. At the moment the package is not unit tested, but is planned to be covered later down the road.
Documentation
You will find user friendly and updated documentation in the wiki here: Caffeinated Widgets Wiki
Quick Installation
Begin by installing the package through Composer.
composer require caffeinated/widgets
Once this operation is complete, simply add the service provider class and facade alias to your project's config/app.php
file:
Service Provider
Caffeinated\Widgets\WidgetsServiceProvider::class,
Facade
'Widget' => Caffeinated\Widgets\Facades\Widget::class,
And that's it! With your coffee in reach, start building out some awesome widgets!