我需要一起加入多个查询。尝试使用union来做到这一点。但是Laravel 5正在抛出这个错误。
致命错误异常。调用未定义的方法
stdClass::union()
我用谷歌搜索了它,但由于我是新手,所以无法找到解决问题的方法。我的控制器代码如下。
我正在尝试传递数组$nows
以填充我的表行。
<?php
namespace App\Http\Controllers;
use DB;
use Illuminate\Http\Request;
use Auth;
class NervousController extends Controller {
public function view()
{
return view('nervous/view');
}
public function motorTable()
{
$user = DB::table('users')->where('name', 'alpha')->first();
$nows = DB::table('patients')->where('name', 'Beta')->first()->union($user)->get();
return view('nervous/motor')->with('data', $nows);
}
}