Package Data | |
---|---|
Maintainer Username: | balse |
Maintainer Contact: | me@balse.ch (Balz Reber) |
Package Create Date: | 2015-02-20 |
Package Last Update: | 2015-02-23 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:20:51 |
Package Statistics | |
---|---|
Total Downloads: | 23 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Delivery Module
Requires Laravel 5
Load "illuminate/html": "~5.0" You have to add "illuminate/html": "~5.0" to your main composer.json file to load html/form/validation support.
Load Package Add "balzreber/delivery": "dev-master" to your main composer.json file.
Update Composer Run "composer update" to install illuminate/html and the package itself and all theire dependencies.
Add Required Service Provider and Aliases Add 'Illuminate\Html\HtmlServiceProvider', to the providers array in config/app.php Add 'Form' => 'Illuminate\Html\FormFacade', and 'Html' => 'Illuminate\Html\HtmlFacade', to the aliases array in config/app.php
Database Migrations: Run "php artisan migrate --path=path/to/migrations" to migrate the db changes.
Add Package Service Provider Add "Balzreber\Delivery\DeliveryServiceProvider" to the provider array in /config/app.php.
Extends layout All views extend the 'layout' template as theire container.