You are here
unless 除非 假如不是 isEmpty 为空
星期二, 2016-04-26 19:19 — shiping1
- @extends('main')
-
- @section('content')
- <h1>{{ $article->title }}</h1>
- <article>{{ $article->body }}</article>
-
- @unless($article->tags->isEmpty())
- <h5>Tags:</h5>
- <ul>
- @foreach($article->tags as $tag)
- <li>{{ $tag->name }}</li>
- @endforeach
- </ul>
- @endunless
- @stop