Download Laravel-xCRUD Integration Full Code that includes this full demo
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class xEditingController extends Controller
{
public function index()
{
$xcrud = Xcrud_get_instance();
$xcrud->table_name('Payments - Single click cell to edit!');
$xcrud->table('payments');
$xcrud->unset_remove();
$xcrud->fields_inline('customerNumber,checkNumber,paymentDate,amount');//set the fields to allow inline editing
$xcrud->unset_edit();
$xcrud->set_logging(true);
$render = $xcrud->render();
return view('xcrud_simple', ['render' => $render]);
}
}
# | Customernumber | Checknumber | Paymentdate | Amount | Test1 | |
---|---|---|---|---|---|---|
1 | 1 | BO86400xx | 1234571 | View | ||
2 | 10364 | OM3149 | 605003 | View | ||
3 | 103600 | OM314912 | 23.07.2020 00:00:00 | 605000 | View | |
4 | 11310 | HQ5502444 | 20.12.2001 00:00:00 | 14190 | View | |
5 | 112 | HQ55022 | 150 | View | ||
6 | 113 | GG31455 | 16.05.2003 00:00:00 | 45870 | View | |
7 | 114 | MA76552 | 15.12.2004 00:00:00 | 82261 | View | |
8 | 114 | NP60385 | 31.05.2003 00:00:00 | 7565 | View | |
9 | 114 | NR27552 | 10.03.2004 00:00:00 | 44894 | View | |
10 | 119 | DB933704 | 14.11.2004 00:00:00 | 19501.82 | View |