1. Go to this page and download the library: Download arseto/laravel-table-view library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$usersTableView = $usersTableView
// you can pass in the title for the column, and the Eloquent\Model property name
->column('Email', 'email')
// Add a colon after the Eloquent\Model property name along with sort and/or search to enable these options
->column('Name', 'name:sort,search')
// Set the default sorting property with
->column('Name', 'name:sort*,search') // Sorted Ascending by default or specify
->column('Name', 'name:sort*:asc')
->column('Name', 'name:sort*:desc')
// Custom column values are created by passing an array with the Eloquent\Model property name as the key
// and a closure function
->column('Joined At', ['created_at:sort*' => function ($user)
{
return $user->created_at->diffForHumans();
}])
// OR
->column(function ($user)
{
return '<img src="' . $user->image_path . '" height="60" width="60">';
})
->column('Email', 'email:sort,search')
->column(function ($user)
{
return '<a class="btn btn-success" href="/users/' . $user->id . '">View</a>';
});
$usersTableView = $usersTableView
// You can pass in an array for the column's row value with the Eloquent\Model property name as the key
// and a closure function
->column('Joined At', ['created_at:sort*' => function ($user)
{
return $user->created_at->diffForHumans();
}])
// OR if sorting and searching is unnecessary, simply pass in the Closure instead of the array
->column('Image', function ($user)
{
return '<img src="' . $user->image_path . '" height="60" width="60">';
});
}]);
$usersTableView = $usersTableView
// Just leave the column title out if you don't want to use it
->column(function ($user)
{
return '<img src="' . $user->image_path . '" height="60" width="60">';
});
$usersTableView = $usersTableView
// Just pass in the partial view file path of the custom control
->headerControl('_types_filter_button');
// access the TableView data collection with $usersTableView->data()