#ポイント
-
orderBy
で並び替え -
get()
の呼び出し忘れずに - descは小さくなっていく
- ascは大きくなっていく
$trip_contents = TripContents::orderBy('recruitment_end_date', 'asc')->get();
絞込操作とつなげたり。
$trips = Trip::where('is_pending', '=', false)
->orderBy('created_date', 'asc')
->lists('trip_id');
##ちなみにDBファザードの場合は
DB::table('book')->orderBy('published', 'asc')->orderBy('price', 'desc')->toSql();