📌  相关文章
📜  从响应 laravel 的 2 个表中获取数据 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:24.343000             🧑  作者: Mango

代码示例1
$p1 = DB::table('properties')
        ->where('address', 'test')
        ->select('name', 'address');

$p2 = DB::table('properties_x')
         ->where('address', 'test')
         ->select('name', 'address');

$p = $p1->unionAll($p2);

DB::table(DB::raw("({$p->toSql()}) AS p"))
->mergeBindings($p)
->select('name', 'address')
->paginate(10);