欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

unless 除非 假如不是 isEmpty 为空

shiping1 的头像
  1. @extends('main')
  2.  
  3. @section('content')
  4. <h1>{{ $article->title }}</h1>
  5. <article>{{ $article->body }}</article>
  6.  
  7. @unless($article->tags->isEmpty())
  8. <h5>Tags:</h5>
  9. <ul>
  10. @foreach($article->tags as $tag)
  11. <li>{{ $tag->name }}</li>
  12. @endforeach
  13. </ul>
  14. @endunless
  15. @stop
普通分类: