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]);
}
}
# | Lastname | Firstname | Extension | Officecode | Reportsto | Jobtitle | City | Phone | Addressline1 | Addressline2 | State | Country | Postalcode | Territory | Ordering | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Murphys | Diane | 234 | james@classicmodelcars.com | 3 | 1232 | President | NYC | +1 212 555 3000 | 523 East 53rd Street | apt. 5A | NY | USA | 10022 | NA | 0 | View Edit Remove |
2 | Patterson | Mary | x324 | mpatterso@classicmodelcars.com | 7 | 10090 | VP Sales | London | +44 20 7877 2041 | 25 Old Broad Street | Level 7 | UK | EC2N 1HN | EMEA | 0 | View Edit Remove | |
3 | Firrelli | Jeff | x9273 | gbondur@classicmodelcars.com | 7 | 1002 | VP Marketing | London | +44 20 7877 2041 | 25 Old Broad Street | Level 7 | UK | EC2N 1HN | EMEA | 0 | View Edit Remove | |
4 | Patterson | 123 | x4645 | wpatterson@classicmodelca.com | 7 | 1056 | Sales Manager (APAC) | London | +44 20 7877 2041 | 25 Old Broad Street | Level 7 | UK | EC2N 1HN | EMEA | 0 | View Edit Remove | |
5 | Bondur | Gerard2 | x540y | gbondur@classicmodelcars.com | 3 | 1050 | Sale Manager (EMEA) | NYC | +1 212 555 3000 | 523 East 53rd Street | apt. 5A | NY | USA | 10022 | NA | 0 | View Edit Remove |
6 | Bow | Anthony8 | x5428 | abow@classicmodelcars.com | 1 | 1056 | Sales Manager (NA) | San Francisco | +1 650 219 4782 | 100 Market Street | Suite 300 | CA | USA | 94080 | NA | 0 | View Edit Remove |
7 | Jennings | Leslie | x540 | ljennings@classicmodelcars.com | 5 | 1143 | Sales Rep 2 | Tokyo | +81 33 224 5000 | 4-1 Kioicho | Chiyoda-Ku | Japan | 102-8578 | Japan | 150 | View Edit Remove | |
8 | Thompson | Leslie | x4065 | lthompson@classicmodelcars.com | 1 | 1143 | Sales Rep 3 | San Francisco | +1 650 219 4782 | 100 Market Street | Suite 300 | CA | USA | 94080 | NA | 0 | View Edit Remove |
9 | Firrelli | Julie | x2173 | jfirrelli@classicmodelcars.com | 2 | 1143 | Sales Rep | Boston | +1 215 837 0825 | 1550 Court Place | Suite 102 | MA | USA | 02107 | NA | 0 | View Edit Remove |
10 | Patterson | Steve | x4334 | spatterson@classicmodelcars.com | 2 | 1143 | Sales Rep | Boston | +1 215 837 0825 | 1550 Court Place | Suite 102 | MA | USA | 02107 | NA | 0 | View Edit Remove |