Download Laravel-xCRUD Integration Full Code that includes this full demo


<?php

namespace App\Http\Controllers;

use 
Illuminate\Http\Request;

class 
xTooltipsController extends Controller
{
    public function 
index()
    {
        
$xcrud Xcrud_get_instance();
        
$xcrud->table('payments');
        
$xcrud->table_name('This is table name!','And this is table tooltip... And tested chars: ö,ü,ß');
        
$xcrud->field_tooltip('checkNumber''Wow, check number? Really?');
        
$xcrud->column_tooltip('customerNumber''Yeah! Column tooltip!');
        
$render $xcrud->render();           
        return 
view('xcrud_simple', ['render' => $render]);
        
    }
}

This is table name!

#Customernumber ChecknumberPaymentdateAmountTest1 
11BO86400xx09.12.2020 00:00:00123457 View Edit Remove
210364OM314916.07.2020 00:00:00605002 View Edit Remove
3103600OM3149123.07.2020 00:00:00605000 View Edit Remove
411310HQ550220.12.2001 00:00:0014190 View Edit Remove
511221HQ5502329.06.1995 00:00:0099 View Edit Remove
6112HQ5502230.07.2020 00:00:0099 View Edit Remove
7113GG3145516.05.2003 00:00:0045870 View Edit Remove
8114MA7655215.12.2004 00:00:0082261 View Edit Remove
9114NP6038531.05.2003 00:00:007565 View Edit Remove
10114NR2755210.03.2004 00:00:0044894 View Edit Remove
Search