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]);
}
}
# | Customernumber | Checknumber | Paymentdate | Amount | Test1 | |
---|---|---|---|---|---|---|
1 | 1 | BO86400xx | 1234571 | View Edit Remove | ||
2 | 10364 | OM3149 | 605003 | View Edit Remove | ||
3 | 103600 | OM314912 | 23.07.2020 00:00:00 | 605000 | View Edit Remove | |
4 | 11310 | HQ5502444 | 20.12.2001 00:00:00 | 14190 | View Edit Remove | |
5 | 112 | HQ55022 | 150 | View Edit Remove | ||
6 | 113 | GG31455 | 16.05.2003 00:00:00 | 45870 | View Edit Remove | |
7 | 114 | MA76552 | 15.12.2004 00:00:00 | 82261 | View Edit Remove | |
8 | 114 | NP60385 | 31.05.2003 00:00:00 | 7565 | View Edit Remove | |
9 | 114 | NR27552 | 10.03.2004 00:00:00 | 44894 | View Edit Remove | |
10 | 119 | DB933704 | 14.11.2004 00:00:00 | 19501.82 | View Edit Remove |