📜  如何在 laravel 中创建模型 - PHP 代码示例

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

代码示例6
return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderBy('arrived_at', 'desc')
        ->limit(1)
)->get();