Package Data | |
---|---|
Maintainer Username: | almeida |
Maintainer Contact: | arnold@floatingpoints.com.au (Arnold Almeida) |
Package Create Date: | 2014-02-19 |
Package Last Update: | 2015-01-30 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:11:06 |
Package Statistics | |
---|---|
Total Downloads: | 3,091 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 0 |
Just a Laravel driver to get UIKit working.
Super alpha release. Suggestions welcome
Add UIKit to your composer.json file to require UIKit
require : {
"almeida/ui-kit-laravel" : "dev-master"
}
Now update Composer
composer update
The last required step is to add the service provider to app/config/app.php
'Almeida\UIKitLaravel\UIKitLaravelServiceProvider',
UIKit should now be avaliable in your application.
You can access the UIKit through the static interface you are used to with Laravel components.
UIKit::header('Some heading');
!! Dangerzone !!!
Probably going to seperate Pagination from Tables soon
Probably going to render the table directly from UIKit::table($rows, $options)
// 1.0 - Make sure data is transformed for output
// Elquoent collection, Paginator
$data;
// Format data for presentation to give us...
$rows = array(
array(
'id' => 1,
'name' => 'John Doe',
'gender' => 'Male',
),
array(
'id' => 2,
'name' => 'Jane Doe',
'gender' => 'Female',
),
);
// 2.0 - Configure how you want the table to behave
$options = array(
// @todo - What do we display when there is no data
'behaviours' => array(
'no-data' => array(
'icon' => 'User',
'message' => "No users found",
'subtext' => array(
'label' => 'Create a new User',
'url' => '/admin/users/create'
),
)
),
// Add's a sort link <th><a>
// match on keys
'sort' => array(
'name' => 'name',
'gender' => 'gender',
),
// Pass in query manually for now.
// Its a bit tricky to autodetect framework and use relevant env objects
'query' => Request::query()
);
// 3.0 - Build the table
$table = UIKit::table($rows, $options);
// 4.0 - Render the table
echo $table->render();
// 5.0 - (Optional) Print pagination
$pagination = $table->pagination($data, $options);
'Almeida\UIKitLaravel\HtmlServiceProvider',
No need to change any markup. The items below will all render with the correct bootstrap markup.
{{ Form::text() }}
{{ Form::checkbox() }}
{{ Form::radio() }}
{{ Form::submit() }}
Add emphasis to your buttons
{{ Form::submit('Delete', ['feedback' => 'danger']) }}
Multiple checkboxes
{{ Form::mutiple('roles', $list=[], $selected=[], $options=[]) }}