![Eloquent Table Banner] (https://raw.githubusercontent.com/stevebauman/eloquent-table/master/eloquent-table-banner.jpg)
Eloquent table is an HTML table generator for laravel collections.
Include the package in composer.json
:
"stevebauman/eloquenttable": "1.1.*"
Now perform a composer update
.
Include the service providers in the bottom app/config/app.php
config file:
'Stevebauman\EloquentTable\PaginationServiceProvider',
'Stevebauman\EloquentTable\EloquentTableServiceProvider',
Publish the config file (optional)
php artisan config:publish stevebauman/eloquenttable
Include the service providers in the bottom config/app.php
config file:
'Stevebauman\EloquentTable\EloquentTableServiceProvider',
Publish the config file (mandatory in Laravel 5)
php artisan vendor:publish
You're good to go!
Note: The
showPages()
method below in unavailable in Laravel 5 due to the pagination changes. You'll need to display your pages manually using therender()
method shown here: http://laravel.com/docs/5.0/pagination#usage
Insert the trait on your model:
class Book extends Eloquent {
use \Stevebauman\EloquentTable\TableTrait;
protected $table = 'books';
}
Grab records from your model like usual:
$books = Books::get();
return view('books.index', compact('books'));
Inside your blade view, we just specify the columns we want to show, and then call the render method:
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By'
))
->render()
}}
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By',
'owned_by' => 'Owned By',
))
->means('owned_by', 'user.first_name')
->render()
}}
The model books, needs to have a user method defining it's relation for this to work.
You must also use 'dot' notation to indicate the relationship.
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By',
'owned_by' => 'Owned By',
))
->means('owned_by', 'user')
->modify('owned_by', function($user, $book) {
return $user->first_name . ' ' . $user->last_name;
})
->render()
}}
Using modify, we can specify the column we want to modify, and the function will return the current relationship record (if the column is a relationship), as well as the current base record, in this case the book.
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By',
'owned_by' => 'Owned By',
))
->means('owned_by', 'user')
->modifyCell('owned_by', function($user) {
return array('class' => $user->role);
})
->render()
}}
Using modifyCell, we can specify the column of the cell we want to modify, and the function should return an array of attributes to be added to the cell.
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By',
'owned_by' => 'Owned By',
))
->means('owned_by', 'user')
->modifyRow('mod1', function($user) {
return array('id' => 'user-'.$user->id);
})
->render()
}}
Using modifyRow, we can add named modifications ('mod1' in our previous example), and the function should return an array of attributes to be added to each row.
In your controller:
$books = Book::sort(Input::get('field'), Input::get('sort'))->get();
In your view:
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By',
'owned_by' => 'Owned By',
))
->sortable(array('id', 'title'))
->render()
}}
A link will be generated inside the column header that will be clickable. The HTML generated will look like:
<a class="link-sort" href="http://www.example.com/books?field=id&sort=desc">
ID <i class="fa fa-sort"></i>
</a>
In your controller:
$books = Book::sort(Input::get('field'), Input::get('sort'))->paginate(25);
return view('books.index', compact('books'));
In your view:
{{
$books->columns(array(
'id' => 'ID',
'title' => 'Title',
'author' => 'Authored By',
'owned_by' => 'Owned By',
'publisher' => 'Publisher',
))
->means('owned_by', 'user')
->modify('owned_by', function($user, $book) {
return $user->first_name . ' ' . $user->last_name;
})
->means('publisher', 'publisher')
->modify('publisher', function($publisher, $book) {
return 'The publisher of this book: '. $publisher->name;
})
->sortable(array('id', 'title'))
->showPages()
->render()
}}
In your controller:
$book = Book::with('authors')->find(1);
return view('book.show', compact('book'));
In this case, the book is going to have many authors (hasMany
relationship)
In your view:
{{
$book->authors->columns(
'id' => 'ID',
'name' => 'Name',
'books' => 'Total # of Books'
)
->means('books', 'num_of_books')
->render()
}}
Keep in mind, we cannot paginate the table, or provide sortable columns on relationships. If you need this, grab it separately:
In your controller:
$book = Book::find(1);
$authors = Authors::where('book_id', $book->id)->paginate(25);
return view('books.show', array(
'book' => $book,
'authors' => $authors,
));
In your view:
{{
$authors->columns(array(
'name' => 'Name',
))->render()
}}
{{
$authors->columns(array(
'name' => 'Name',
))
->attributes(array(
'id' => 'table-1',
'class' => 'table table-striped table-bordered',
))
->render()
}}
Just don't call the showPages()
method on the collection and put your pages
somewhere on your page like you would regularly do.
{{
$authors->columns(array(
'name' => 'Name',
))
->attributes(array(
'id' => 'table-1',
'class' => 'table table-striped table-bordered',
))
->render()
}}
<div class="text-center">{{ $authors->appends(Input::except('page'))->links() }}</div>
When calling paginate()
on your models and/or collections, a different collection instance is returned. Unfortunately the only solution is to override the default paginator instance. However, this paginator extends laravel's built in paginator, so absolutely no functionality is removed or lost.