Team-Tea-Time / laravel-forum

A slim, lean forum package designed for quick and easy integration in Laravel projects
https://laravel-forum.teamteatime.net/
MIT License
601 stars 165 forks source link

Added posts ordering by id #195

Closed realdark closed 6 years ago

realdark commented 6 years ago

Posts correct order.

Gummibeer commented 6 years ago

In most databases with autoincrement this will happen automatically. Here I would like an explicit order by creation date.

Riari commented 6 years ago

Yes, ->orderBy('created_at') would be preferred.