douba2011 2016-10-30 14:09
浏览 66
已采纳

Blade Query与多个where和orWhere子句匹配某些id

I have a laravel project that I want to check if the user either owners or rents a property from a MySQLDB, I have a rewrite rule that allows them to visit a page and edit this property

Route::get('/housing/manage/{id}', function() {
        return view('pages.housing_management.housing_management');
    });

Now, I have this query that checks if they either own or rent it, but thats to check if theres any properties that match that rule, is where a way I can make sure that they own or rent the propertie with id = {id} that is sent with the page?

@if (count(Properties::where('owner', '=', Auth::user()->id)->orWhere('rented_by', '=', Auth::user()->id)->orderBy('id', 'DESC')->limit(1)->get()) > 0)
<p>Authentication Passed, you either own or rent this property.</p>
@endif
  • 写回答

2条回答 默认 最新

  • douqiju2520 2016-10-30 14:26
    关注

    I think the best practice for this case is adding two relations in the User Model to the Properties Model - Like this:

    public function ownedProperties() {
        return $this->hasMany(Properties::class, 'owner');
    }
    
    public function rentedProperties() {
        return $this->hasMany(Properties::class, 'rented_by');
    }
    

    And then your check is gonna be something like this:

    @if ($user->ownedProperties->contains($propertyId) || $user->rentedProperties->contains($propertyId))
       <p>Authentication Passed, you either own or rent this property.</p>
    @endif
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥30 自适应 LMS 算法实现 FIR 最佳维纳滤波器matlab方案
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动