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

LaravelCollective Html and Form builder for Lumen.
14
0
2
Package Data
Maintainer Username: WaylandAce
Maintainer Contact: adam@laravelcollective.com (Adam Engebretson)
Package Create Date: 2018-02-25
Package Last Update: 2018-02-25
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:17:52
Package Statistics
Total Downloads: 14
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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.