0
私はLaravelの初心者です。クエリのページネーションを実装する必要があります。 以下は私が送信しているクエリです。次に達成するためのクエリです。ラベリングのデータテーブル
$arrAirlines = DB::table("(SELECT air.airline_id, air.title FROM `tbl_com_airlines_airports` as aa
left join tbl_com_airlines as air ON air.airline_id = aa.airline_id
where aa.country_id ='".$countryId."' and aa.is_deleted ='0' and air.org_id ='".$orgId."'
and (Select count(*) from tbl_com_airlines_airports where aa.is_domestic ='1')>1)")
;