zachleigh / larafolio

A portfolio management system for Laravel.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Links arent ordered in Project statics

zachleigh opened this issue · comments

Links need to be ordered by order property. In orderAndGroupQuery(), add this at top of method:

        $query->with(['links' => function ($query) {
            $query->orderBy('order');
        }]);

v0.9.06