Download the PHP package schubu/laravel-widgets without Composer
On this page you can find all versions of the php package schubu/laravel-widgets. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download schubu/laravel-widgets
More information about schubu/laravel-widgets
Files in schubu/laravel-widgets
Package laravel-widgets
Short Description Feature your blade view files with widgets to keep your controller classes clean
License MIT
Homepage https://github.com/schubu/laravel-widgets
Informations about the package laravel-widgets
Laravel Widget Package - keep your controllers clean and DRY
A laravel widget package based on the laracasts episode. It helps you to keep your controller clean and DRY.
Installation
You can install the package via composer:
Usage
Artisan command
You can create a widget by running this artisan command:
It will two folders:
- a folder within the directory
-
a folder within the directory
This task also places a class file and a blade file to get started.
Blade @widget directive
You can easily include your widget by using this blade directive:
Passing data to your widget
You can pass data in two ways:
- define a public property
- define a public method
The public methods and properties will be passed as variables to your blade view!
Example
Your class:
In your blade you can access your data this way:
Specifying the blade filename
You can customize the blade filename by adding an additional parameter to the artisan command:
That results in a blade file named . The generated class now contains an additional protected property
Testing
Because I'm new to testing, no testing at all happened :-(.
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
This is my first package ever. So hope you'll contribute and help improving it. Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Peter Schulze-Buxloh
- Jeffrey Way
- Marcel Pociot
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.