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

#OrderdateRequireddateShippeddateStatusCommentsCustomernumber 
123.10.2003 00:00:0030.10.2003 00:00:00CancelledCustomer called to cancel. The warehouse was…448 View Edit Remove
204.11.2003 00:00:0012.11.2003 00:00:0007.11.2003 00:00:00Shipped452 View Edit Remove
305.11.2003 00:00:0013.11.2003 00:00:0007.11.2003 00:00:00Shipped233 View Edit Remove
405.11.2003 00:00:0014.11.2003 00:00:0011.11.2003 00:00:00Shipped175 View Edit Remove
505.11.2003 00:00:0015.11.2003 00:00:0009.11.2003 00:00:00ShippedCautious optimism. We have happy customers here,…278 View Edit Remove
606.11.2003 00:00:0015.11.2003 00:00:0010.11.2003 00:00:00Shipped333 View Edit Remove
706.11.2003 00:00:0014.11.2003 00:00:0009.11.2003 00:00:00Shipped324 View Edit Remove
806.11.2003 00:00:0015.11.2003 00:00:0012.11.2003 00:00:00Shipped386 View Edit Remove
907.11.2003 00:00:0017.11.2003 00:00:0012.11.2003 00:00:00Shipped344 View Edit Remove
1008.11.2003 00:00:0016.11.2003 00:00:0010.11.2003 00:00:00ShippedCustom shipping instructions sent to warehouse242 View Edit Remove
Search