简体   繁体   English

Laravel Eloquent 多个 whereHas 关系,其中列“顺序”高于前一个 whereHas

[英]Laravel Eloquent multiple whereHas on relationship where column 'order' is higher than the previous whereHas

I'm working on a bus route system with stops at certain locations.我正在研究在某些位置停靠的公交路线系统。 The route stops are in a ascending sequence by a 'order' column, as in 1, 2, 3, 4, 5.. etc.路线停靠点按“顺序”列按升序排列,如 1、2、3、4、5 等。

These are my tables:这些是我的表:

BUS公共汽车

id | operator_id | name 
1  | 1           | The Big Red Bus

PLACES (some dummy data just for example)地方(一些虚拟数据只是例如)

id | name       | slug        | parent_id
1  | Amsterdam  | amsterdam   | 
2  | London     | london      |
3  | Stockholm  | stockholm   |
4  | Helsinki   | helsinki    |
5  | Dam Square | dam-square  | 1

ROUTES路线

id | name 
1  | Amsterdam - London 
2  | London - Amsterdam

ROUTE_LOCATIONS (LOCATIONS) ROUTE_LOCATIONS(地点)

id | route_id | place_id | order | start | end
1  | 1        | 1        | 1     | 1     | 0
2  | 1        | 2        | 2     | 0     | 0
3  | 1        | 3        | 3     | 0     | 0
4  | 1        | 4        | 4     | 0     | 1

User Input The given user input when I start a search to check if we have any available bus routes is a place slug from the PLACES table.用户输入 当我开始搜索以检查我们是否有任何可用的巴士路线时,给定的用户输入是来自 PLACES 表的一个地方 slug。 For example:例如:

  • from: london从伦敦
  • to: dam-square至:水坝广场

Below is the query what I tried so far, but I am really unsure on how to build a check/join into the actual query to check if the 'order' sequence is ascending.下面是我到目前为止尝试过的查询,但我真的不确定如何在实际查询中构建检查/连接以检查“顺序”序列是否为升序。 I just can't get my head around it.我只是无法理解它。

    $buses = Bus::whereHas('route.locations.place', function ($query) use ($from, $to) {
        $query->where('slug', $from)->where('end', 0);
    })->whereHas('route.locations.place', function ($query) use ($from, $to) {
        $query->where('slug', $to)->where('start', 0);
    })->get();

Relationships structure is as follows:关系结构如下:

BUS hasOne ROUTE

ROUTE belongsToMany BUS

ROUTE hasMany LOCATIONS (ROUTE_LOCATIONS TABLE)

I have already tried the following query which works to get available routes, but I really like to do it directly in laravel eloquent with my models, so I can easily use the relationships in my view.我已经尝试了以下查询,该查询可用于获取可用路由,但我真的很喜欢直接在 laravel eloquent 中使用我的模型来执行此操作,因此我可以轻松地在我的视图中使用这些关系。 I am just unsure on how to go about it.我只是不确定如何去做。

Below query only works with a place ID instead of a slug, and I really like it to be a slug instead of an ID.下面的查询仅适用于地点 ID 而不是 slug,我真的很喜欢它是一个 slug 而不是 ID。

$routes = DB::select('SELECT R.id, R.name
FROM route_locations L
INNER JOIN routes R ON R.id = L.route_id
WHERE
L.place_id = "'.$from->id.'" AND
EXISTS (SELECT id FROM route_locations F WHERE L.route_id = F.route_id AND F.order > L.order AND F.place_id = "'.$to->id.'")');

Does anyone know if this is possible and how?有谁知道这是否可能以及如何实现?

Thank you!谢谢!

Your code could be rewritten to this one:您的代码可以重写为:

$busses = Bus::whereHas('route.locations.place', function ($query) use ($from, $to) {
    $query->where('slug', $from)
        ->where('slug', $to)
        ->where('start', 0)
        ->where('end', 0);
        // here should do a check if the 'order' column is higher than the first wherehas
})->get();

And it doesn't make much sense to me.这对我来说没有多大意义。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM