Download the PHP package desmart/laravel-layout without Composer
On this page you can find all versions of the php package desmart/laravel-layout. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download desmart/laravel-layout
More information about desmart/laravel-layout
Files in desmart/laravel-layout
Package laravel-layout
Short Description Simple page structure controller for Laravel4
License
Informations about the package laravel-layout
Installation
Add desmart\laravel-layout
as a requirement to composer.json:
Update your packages with composer update
or install with composer install
.
In app/config/app.php add:
'DeSmart\Layout\LayoutServiceProvider',
to providers'Layout' => 'DeSmart\Layout\Facades\Layout',
to aliases.
Overview
This package provides DeSmart\Layout\Controller
class which works like normal page controller.
However it can be used to describe complete page structure.
To do this simply define $layout
which is basic page template, and $structure
which is an array with section block definition.
Section block is a list of callbacks (let's call them actions) which will be run and put in a defined place in template.
Sample page template
Sample controller
Sample route
Actions
Each action is a callback string which will be called during DeSmart\Layout\Controller@execute
call.
Every action can get params defined in route, just define them as function arguments (public function showOne($product_id) {}
).
Layout facade
This package provides Layout
facade with method dispatch
.
It can be used to execute action directly in template.
dispatch()
can take array argument with named callback arguments:
Notice, that it takes care with default arguments.
Warning
This package is provided as is. For now it's only a concept and the whole idea can change.
Just treat it as early alpha version.