如何在 Laravel 5.8 中找出数据库中的表是否为空。
我想使用这样的 if else 语句,但不起作用:
@foreach($accounts as $showaccounts)
@if($showaccounts->id == !NULL)
<div class="list-item" data-id="item-11"><span class="w-40 avatar circle blue"> <img src="{{ $showaccounts->image }}" alt="."></span>
<div class="list-body"><a href="app.message.php" class="item-title _500">{{ $showaccounts->username }}</a>
</div>
</div>
@else
<div class="no-result">
<div class="p-4 text-center">No Results</div>
</div>
@endif
@endforeach
我尝试了其他功能,但仍然无法正常工作。
@if($showaccounts->id === NULL)
@if(is_null($showaccounts->id))
@if(empty($showaccounts->id))
德玛西亚99
12345678_0001