排序顺序laravel雄辩的关系

时间:2018-05-29 05:54:49

标签: mysql laravel orm eloquent

我面临着对laravel集合进行排序的问题。 我创建了如下查询。

 $schoolBookings = SchoolModel::with(['bookings.crts',
                        'bookings.crts.users' => function($que) {
                            $que->orderBy('first_name', 'ASC');
                        }
                        , 'schoolType',
                        'bookings.crts.teachingSpecializations',
                        'bookings' => function($que) use($filters, $input) {
                            if (!empty($input['start_date'])) {
                                $que->where('booked_on', '>=', $input['start_date']);
                            }
                            if (!empty($input['end_date'])) {
                                $que->where('booked_on', '<=', $input['end_date']);
                            }
                            $que->where('booked_on', '<=', date("Y-m-d 00:00:00"));
                            $que->orderBy('booked_on', 'desc');
                        },])
                    ->where(function($que) use ($filters) {
                        if (!empty($schoolId)) {
                            $que->where('id', $schoolId);
                        }
                    })
                    ->get()->toArray();

当您通过预订工作正常显示排序。 但我想根据预订日期排序。然后由CRT用户fisrt名称 这是我得到的。

Booking_date,  booking_id  USER_NAME    day
29/05/2018 -- 392514 --  Ehsanullah Islami Full day 
28/05/2018 -- 881393 --  Patricia Louden Full day 
28/05/2018 -- 848449 --  Ehsanullah Islami Full day
28/05/2018 -- 438674 --  Kirsten Wheeler Full day 
28/05/2018 -- 692704 --  Juliete Reim Full day
28/05/2018 -- 594508 --  Kasandra Kulas Full day 
28/05/2018 -- 737695 --  Roland Clements Full day 

任何人都可以建议如何通过按字母顺序预订CRT用户名来排序。

感谢。

1 个答案:

答案 0 :(得分:0)

您可以尝试以下操作,在查询完成后进行排序。

 $schoolBookings = SchoolModel::with(['bookings.crts',
                        'bookings.crts.users' => function($que) {
                            $que->orderBy('first_name', 'ASC');
                        }
                        , 'schoolType',
                        'bookings.crts.teachingSpecializations',
                        'bookings' => function($que) use($filters, $input) {
                            if (!empty($input['start_date'])) {
                                $que->where('booked_on', '>=', $input['start_date']);
                            }
                            if (!empty($input['end_date'])) {
                                $que->where('booked_on', '<=', $input['end_date']);
                            }
                            $que->where('booked_on', '<=', date("Y-m-d 00:00:00"));
                            $que->orderBy('booked_on', 'desc');
                        },])
                    ->where(function($que) use ($filters) {
                        if (!empty($schoolId)) {
                            $que->where('id', $schoolId);
                        }
                    })
                    ->get()->sortBy('bookings.booked_on')->toArray()