0
我正在通過關係檢索與我的batsmans個人資料相關的評論。無論如何,我可以通過這個最新的評論來訂購,還是我必須在控制器中做到這一點?通過關係檢索訂購評論
當前檢索評論。
@foreach($batsmen->comments as $comments)
<p> $comments->comment</p>
<p> Posted by: $comments->user_id</p>
@endforeach
[它可以在定義關係的模型上完成](https://stackoverflow.com/questions/18143061/laravel-orderby-on-a-relationship) – Quezler