我在 Laravel 4 的事件模型中有以下内容。我使用 QueryBuilder 而不是 Eloquent 的原因是我需要在我的视图中的结果表的每个列标题中都有链接,单击时,以 asc 或 desc 排序结果基于该列。
我遇到的问题是,如果我使用 Eloquent,它将无法工作,因为大多数数据都是通过与其他表的关系拉出的,因此 Eloquent 找不到所需的列/字段。
public static function getEvents($perPage = 10)
{
$order = Session::get('event.order', 'start_date.desc');
$order = explode('.', $order);
$columns = array(
'events.id as id',
'title',
'locations.city as city',
'suppliers.name as supplier_name',
'venues.name as venue_name',
'start_date',
'courses.price as course_price',
'type',
'status',
'max_delegates as availability',
'tutors.first_name as tutor_first_name',
'tutors.last_name as tutor_last_name',
'contacts.first_name as d_first_name'
);
$events = DB::table('events')
->leftJoin('courses', 'course_id', '=', 'courses.id')
->leftJoin('suppliers', 'supplier_id', '=', 'suppliers.id')
->leftJoin('locations', 'location_id', '=', 'locations.id')
->leftJoin('venues', 'venue_id', '=', 'venues.id')
->leftJoin('event_types', 'event_type_id', '=', 'event_types.id')
->leftJoin('event_statuses', 'event_status_id', '=', 'event_statuses.id')
->leftJoin('tutors', 'tutor_id', '=', 'tutors.id')
->leftJoin('delegate_event', 'delegate_event.event_id', '=', 'events.id')
->leftJoin('delegates', 'delegates.id', '=', 'delegate_event.delegate_id')
->leftJoin('contacts', 'delegates.contact_id', '=', 'contacts.id')->groupBy('events.id')
->select($columns)
->orderBy($order[0], $order[1])
->paginate($perPage);
return $events;
}
如果您在 getOrder 方法中查看我的 EventsController:
public function getOrder($order)
{
Session::put('event.order', $order);
return Redirect::back();
}
您可以看到我将顺序存储在会话中,然后在我的模型中使用它对结果的顺序进行排序。
有没有办法按照我需要的方式在 Eloquent 中做到这一点?