vluzrmos / collective-html by vluzrmos
forked from LaravelCollective/html

LaravelCollective Html and Form builder for Lumen.
23,792
22
4
Package Data
Maintainer Username: vluzrmos
Maintainer Contact: adam@laravelcollective.com (Adam Engebretson)
Package Create Date: 2015-06-19
Package Last Update: 2018-02-25
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:14:08
Package Statistics
Total Downloads: 23,792
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 22
Total Watchers: 4
Total Forks: 14
Total Open Issues: 2

Forms & HTML

Join the chat at https://gitter.im/vluzrmos/collective-html Lumen Version Latest Stable Version Total Downloads Latest Unstable Version License Build Status

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.