📌  相关文章
📜  如何使用限制获取数据 - 无论代码示例

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

代码示例1
use App\Destination;
use App\Flight;

return Destination::addSelect(['last_flight' => Flight::select('name')
    ->whereColumn('destination_id', 'destinations.id')
    ->orderBy('arrived_at', 'desc')
    ->limit(1)
])->get();