1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Laravel】BladeでCollectionが空かどうかを判定するには

Posted at

自分用

DBを取得したけど件数が0。
でもなぜかnullやらemptyやらで判定してもTrueになってしまう…

そんな時は

@forelse($replies as $reply)
    <p>{{ $reply->body }}</p>
@empty
    <p>No replies</p>
@endforelse

@forelse@empty(取得件数が0件だった時の処理)~@endforelse

でいけました。

参考 : https://stackoverflow.com/questions/32652818/laravel-blade-check-empty-foreach

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?