Download Laravel-xCRUD Integration Full Code that includes this full demo
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class xRelationController extends Controller
{
public function index()
{
$xcrud = Xcrud_get_instance();
$xcrud->table('gallery');
$xcrud->change_type('image', 'image', false, array(
'width' => 450,
'path' => '../uploads/gallery',
'thumbs' => array(array(
'height' => 55,
'width' => 120,
'crop' => true,
'marker' => '_th'))));
$xcrud->column_callback("active","getStatusSwitchRadio_Gallery");
$xcrud->create_action("deactivate_gallery","deactivate_gallery");
$xcrud->create_action("activate_gallery","activate_gallery");
$render = $xcrud->render();
return view('xcrud_simple', ['render' => $render]);
}
}
# | Firstname | Lastname | Office in | |
---|---|---|---|---|
1 | Diane | Murphys | NYC | View Edit Remove |
2 | Mary | Patterson | London | View Edit Remove |
3 | Jeff | Firrelli | London | View Edit Remove |
4 | 123 | Patterson | London | View Edit Remove |
5 | Gerard2 | Bondur | NYC | View Edit Remove |
6 | Anthony8 | Bow | San Francisco | View Edit Remove |
7 | Leslie | Jennings | Tokyo | View Edit Remove |
8 | Leslie | Thompson | San Francisco | View Edit Remove |
9 | Julie | Firrelli | Boston | View Edit Remove |
10 | Steve | Patterson | Boston | View Edit Remove |