Download Laravel-xCRUD Integration Full Code that includes this full demo
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class xColumnsController extends Controller
{
public function index()
{
$xcrud = Xcrud_get_instance();
$xcrud->table('customers');
$xcrud->columns('customerName,phone,city,country'); // columns in grid
$xcrud->fields('customerName,creditLimit,salesRepEmployeeNumber'); // fields in details
$render = $xcrud->render();
return view('xcrud_simple', ['render' => $render]);
}
}
| # | Customername | Phone | City | Country | |
|---|---|---|---|---|---|
| 1 | Atelier graphique | 40.32.2555 | Nantes | France | View Edit Remove |
| 2 | Signal Gift Stores | 7025551838 | Las Vegas | USA | View Edit Remove |
| 3 | Australian Collectors, Co. | 03 9520 4555 | Melbourne | Australia | View Edit Remove |
| 4 | La Rochelle Gifts | 40.67.8555 | Nantes | France | View Edit Remove |
| 5 | Baane Mini Imports | 07-98 9555 | Stavern | Norway | View Edit Remove |
| 6 | Mini Gifts Distributors Ltd. | 4155551450 | San Rafael | USA | View Edit Remove |
| 7 | Zbyszek Zbyszek Piestrzeniewicz | 266427555 | Warszawa | Poland | View Edit Remove |
| 8 | Blauer See Auto, Co. | +49 69 66 90 2555 | Frankfurt | Germany | View Edit Remove |
| 9 | Mini Wheels Co. | 6505555787 | San Francisco | USA | View Edit Remove |
| 10 | Land of Toys Inc. | 2125557818 | NYC | USA | View Edit Remove |