Laravel从2个表中获取非空的数据

时间:2015-10-04 10:07:18

标签: php laravel-4 role

我试图从两个不同的表中获取一些数据,

现在看起来确实如此:

pic 1

但我不想要显示空字段(Globale-Moderator,Moderator和Proef-Moderator)。我该如何使用此代码执行此操作;

控制器:

public function ForumTeam()
    {
        $roles = Role::where('id', '>', '4')->orderBy('id', 'DESC')->get();
        return View::make('team')->with('roles', $roles);
    }

查看:

<div class="panel-group col-sm-offset-1 col-sm-10">
  @foreach($roles as $role)
    <div class="panel panel-default">
      <div class="panel-heading">
        <h3 class="panel-title">{{ $role->name }}</h3>
      </div>
      <div class="panel-body">
        <ul class="list-group">

          @foreach($role->user as $user)
            <li class="list-group-item">
              <img src="{{ Config::get('app.url') }}/public/img/avatar.jpg" style="float:left;margin-right:15px;padding-bottom:5px;" class="img-circle" alt="{{ $user->username }}" width="75" height="75">
              <h4 style="color:{{ $role->colour }};"><strong>{{ $user->username }}</strong></h4>
              <p>{{ $user->usertitle }}</p>
            </li>
          @endforeach

        </ul>
      </div>
    </div>
  @endforeach
</div>

所以我想隐藏未填写的字段,我应该怎么做?

我的另一个选择是在“空白”内显示一些文字。领域。喜欢&#39;没有人拥有这个等级&#39;。

谢谢!

2 个答案:

答案 0 :(得分:1)

您可以/应该可以使用:

@foreach($roles as $role)

   @if($role->user != null || !empty($role->user->name))

   @endif

@endforeach

然后,您可以检查role->user是否为非空或角色的名称是否为空.WHERE name是角色的名称,即“Admin”,“Moderator”

或者,尝试:

  @foreach($roles as $role)

    @if(count($role->user) >= 1)
       // Do stuff
    @endif

  @endforeach

由于您获得的User具有一对多的关系,因此会有多个用户。

答案 1 :(得分:0)

您可以在第一个@foreach之后添加if语句,以检查该角色 有用户,

@foreach($roles as $role)
    @if(isset($role->user))
    ...
    @endif
@endforeach