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]);
        
    }
}

Orders

#OrderdateRequireddateShippeddateStatusActionCommentsCustomernumber 
129.07.2023 00:00:0029.07.2023 00:00:0030.07.2020 00:00:00Not Shipped0Great363 View Edit Remove
218.01.2023 00:00:0018.01.2023 00:00:0014.01.2003 00:00:00Shipped0Great Great181 View Edit Remove
307.02.2022 00:00:0007.02.2022 00:00:0002.02.2003 00:00:00Shipped0MMM121 View Edit Remove
407.02.2022 00:00:0007.02.2022 00:00:0019.02.2003 00:00:00Shipped0Hi141 View Edit Remove
511.02.2003 00:00:0021.02.2003 00:00:0012.02.2003 00:00:00Shipped0Item 1145 View Edit Remove
624.02.2024 00:00:0024.02.2024 00:00:0021.02.2003 00:00:00Shipped0Great Item278 View Edit Remove
724.02.2003 00:00:0003.03.2003 00:00:0026.02.2003 00:00:00Shipped0Difficult to negotiate with customer. We need…131 View Edit Remove
803.03.2003 00:00:0012.03.2003 00:00:0008.03.2003 00:00:00Shipped0385 View Edit Remove
910.03.2003 00:00:0019.03.2003 00:00:0011.03.2003 00:00:00Shipped0Customer requested that FedEx Ground is used for…486 View Edit Remove
1018.03.2003 00:00:0024.03.2003 00:00:0020.03.2003 00:00:00Shipped0187 View Edit Remove
Search