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]);
    }
}

Payments - Single click cell to edit!

#CustomernumberChecknumberPaymentdateAmountTest1 
11BO86400xx1234571 View
210364OM3149605003 View
3103600OM31491223.07.2020 00:00:00605000 View
411310HQ550244420.12.2001 00:00:0014190 View
5112HQ55022150 View
6113GG3145516.05.2003 00:00:0045870 View
7114MA7655215.12.2004 00:00:0082261 View
8114NP6038531.05.2003 00:00:007565 View
9114NR2755210.03.2004 00:00:0044894 View
10119DB93370414.11.2004 00:00:0019501.82 View
Search