Download Laravel-xCRUD Integration Full Code that includes this full demo


<?php

namespace App\Http\Controllers;

use 
Illuminate\Http\Request;

class 
xJoinController extends Controller
{
    public function 
index()
    {
        
$xcrud Xcrud_get_instance();
        
$xcrud->table('employees');
        
$xcrud->join('officeCode','offices','officeCode'); // ... INNER JOIN offices ON employees.officeCode = offices.officeCode ...
        
$render $xcrud->render();
        return 
view('xcrud_simple', ['render' => $render]);
        
    }
}

Employees

#LastnameFirstnameExtensionEmailOfficecodeReportstoJobtitleCityPhoneAddressline1Addressline2StateCountryPostalcodeTerritoryOrdering 
1Bondured1Gerard23totogerard23.bondured1@myoffice.com71050Sale Manager (EMEA)London+44 20 7877 204125 Old Broad StreetLevel 7UKEC2N 1HNEMEA4 View Edit Remove
2BowAnthony8x5428anthony8.bow@myoffice.com61056Sales Manager (NA)Sydney+61 2 9264 24515-11 Wentworth AvenueFloor #2AustraliaNSW 2010APAC7 View Edit Remove
3JenningsLesliex540ljennings@classicmodelcars.com51143Sales Rep 2Tokyo+81 33 224 50004-1 KioichoChiyoda-KuJapan102-8578Japan1 View Edit Remove
4ThompsonLesliex4065lthompson@classicmodelcars.com11143Sales Rep 3San Francisco+1 650 219 4782100 Market StreetSuite 300CAhjklUSA94080NA3 View Edit Remove
5FirrelliJuliex2173jfirrelli@classicmodelcars.com21143Sales RepBoston+1 215 837 08251550 Court PlaceSuite 102MAUSA02107NA6 View Edit Remove
6PattersonSteverfrspatterson@classicmodelcars.com21143Sales RepBoston+1 215 837 08251550 Court PlaceSuite 102MAUSA02107NA6 View Edit Remove
7TsengFoon Yueo224ftseng@classicmodelcars.com51143Sales RepTokyo+81 33 224 50004-1 KioichoChiyoda-KuJapan102-8578Japan1 View Edit Remove
8VanaufGeorge Nx4102gvanauf@classicmodelcars.com31143Sales RepNYC+1 212 555 3000523 East 53rd Streetapt. 5ANYUSA10022NA0 View Edit Remove
9BondurLouix6493lbondur@classicmodelcars.com71102Sales RepLondon+44 20 7877 204125 Old Broad StreetLevel 7UKEC2N 1HNEMEA4 View Edit Remove
10HernandezGerardx2028ghernande@classicmodelcars.com41102Sales RepParis+33 14 723 440443 Rue Jouffroy D'abbansFrance75017EMEA5 View Edit Remove
Search