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 
1141IN44625825.03.2005 00:00:0012312444555 View
2141JE10547718.03.2005 00:00:0012312444555 View
3141JN35528026.10.2003 00:00:0049539.37 View
4141JN72201025.02.2003 00:00:0040206.2 View
5141KT5257809.12.2003 00:00:0063843.55 View
6141MC4694609.07.2004 00:00:0035420.74 View
7141MF62960216.08.2004 00:00:0020009.53 View
8141NU62770617.05.2004 00:00:0026155 View
9144IR84630312.12.2004 00:00:0036005.71 View
10144LA68567809.04.2003 00:00:007674.94 View
Search