vluzrmos / collective-html
LaravelCollective Html and Form builder for Lumen.
Installs: 23 831
Dependents: 1
Suggesters: 0
Security: 0
Stars: 22
Watchers: 4
Forks: 798
Open Issues: 2
Requires
- php: >=5.4.0
- illuminate/http: ~5.0
- illuminate/session: ~5.0
- illuminate/support: ~5.0
- laravel/lumen-framework: ~5.0
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
- vluzrmos/lumen-url-host: ~0.0
Replaces
- laravelcollective/html: v1.0.13
README
Official documentation for Forms & Html for The Laravel/Lumen Framework can be found at the LaravelCollective website.
Instalation on Lumen
composer require vluzrmos/collective-html
Configuration
On your bootstrap/app.php
:
$app->register('Collective\Html\HtmlServiceProvider'); class_alias('Collective\Html\HtmlFacade', 'Html'); class_alias('Collective\Html\FormFacade', 'Form');
And remember to enable de facades, just uncomment that line:
$app->withFacades()
If you want to automatically inject the $html
and $form
variables on all your Blade's View:
$app->register('Collective\Html\InjectVarsServiceProvider');
And now you will not need the facades anymore, just that:
{!! $form->open() !!}
//...
{!! $html->asset() !!}
Known Issues
Lumen UrlGenerator doesn't support route('route.name', $id)
, because that you have to use an associative array:
{!! Form::open(['route' => ['route.name', ['id' => $id ] ]]) !!}
Lumen UrlGenerator do not generate correctly urls on console commands or non-browser requests, to fix that I suggest you to install my other package:
composer require vluzrmos/lumen-url-host
And add lumenUrlHost('your-disired.domain:port');
at the top of your bootstrap/app.php
file.
Link: vluzrmos/lumen-url-host.
Replacing LaravelCollective/Html
If your project require some package that requires laravelcollective/html
, you can edit your composer.json to:
for Lumen 5.1:
"vluzrmos/collective-html": "1.0.9 as 5.1",
"package-vendor/package-required-name":"package-version" //that requires laravelcollective/html 5.1
for Lumen 5.0:
"vluzrmos/collective-html": "1.0.9 as 5.0",
"package-vendor/package-required-name":"package-version" //that requires laravelcollective/html 5.0
Note: use version 1.0.9 or the latest vluzrmos/collective-html version.
Credits
That package is just a free modification of LaravelCollective/Html to work with Lumen Framework.