エロクワントなサブクエリの使い方
以下に、エロクワントを使用したサブクエリのいくつかの例を示します。子クエリの結果を利用する例:$subquery = DB::table('orders') ->select('customer_id', DB::raw('SUM(total_amount) as total_sales')) ->groupBy('customer_id'); $customers = DB::table('customers') ->select('id', 'name') >>More