Download Laravel-xCRUD Integration Full Code that includes this full demo
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class xNestedController extends Controller
{
public function index()
{
$xcrud = Xcrud_get_instance();
$xcrud->table('orders');
$xcrud->default_tab('Order info');
$xcrud->parsley_active(true);
//Make extension mandatory
$xcrud->set_attr('comments',array('required'=>'required'));
$orderdetails = $xcrud->nested_table('Order details','orderNumber','orderdetails','orderNumber'); // 2nd level
$orderdetails->columns('productCode,quantityOrdered,priceEach');
$orderdetails->fields('productCode,quantityOrdered,priceEach');
$orderdetails->default_tab('Detail information');
$customers = $xcrud->nested_table('Customers','customerNumber','customers','customerNumber'); // 2nd level 2
$customers->columns('customerName,city,country');
$products = $orderdetails->nested_table('Products','productCode','products','productCode'); // 3rd level
$products->default_tab('Product details');
$productLines = $products->nested_table('Product Lines','productLine','productlines','productLine'); // 4th level
$render = $xcrud->render();
return view('xcrud_simple', ['render' => $render]);
}
}
# | Orderdate | Requireddate | Shippeddate | Status | Action | Comments | Customernumber | |
---|---|---|---|---|---|---|---|---|
1 | 29.07.2023 00:00:00 | 29.07.2023 00:00:00 | 30.07.2020 00:00:00 | Not Shipped | 0 | Great | 363 | View Edit Remove |
2 | 18.01.2023 00:00:00 | 18.01.2023 00:00:00 | 14.01.2003 00:00:00 | Shipped | 0 | Great Great | 181 | View Edit Remove |
3 | 07.02.2022 00:00:00 | 07.02.2022 00:00:00 | 02.02.2003 00:00:00 | Shipped | 0 | MMM | 121 | View Edit Remove |
4 | 07.02.2022 00:00:00 | 07.02.2022 00:00:00 | 19.02.2003 00:00:00 | Shipped | 0 | Hi | 141 | View Edit Remove |
5 | 11.02.2003 00:00:00 | 21.02.2003 00:00:00 | 12.02.2003 00:00:00 | Shipped | 0 | Item 1 | 145 | View Edit Remove |
6 | 24.02.2024 00:00:00 | 24.02.2024 00:00:00 | 21.02.2003 00:00:00 | Shipped | 0 | Great Item | 278 | View Edit Remove |
7 | 24.02.2003 00:00:00 | 03.03.2003 00:00:00 | 26.02.2003 00:00:00 | Shipped | 0 | Difficult to negotiate with customer. We need | 131 | View Edit Remove |
8 | 03.03.2003 00:00:00 | 12.03.2003 00:00:00 | 08.03.2003 00:00:00 | Shipped | 0 | 385 | View Edit Remove | |
9 | 10.03.2003 00:00:00 | 19.03.2003 00:00:00 | 11.03.2003 00:00:00 | Shipped | 0 | Customer requested that FedEx Ground is used for | 486 | View Edit Remove |
10 | 18.03.2003 00:00:00 | 24.03.2003 00:00:00 | 20.03.2003 00:00:00 | Shipped | 0 | 187 | View Edit Remove |