Skip to content

Instantly share code, notes, and snippets.

@emmadesilva
Created March 4, 2022 12:11
Show Gist options
  • Select an option

  • Save emmadesilva/4b6f396dc8e8fdba403c1e662a460eb1 to your computer and use it in GitHub Desktop.

Select an option

Save emmadesilva/4b6f396dc8e8fdba403c1e662a460eb1 to your computer and use it in GitHub Desktop.
Minimal & Responsive Blade+TailwindCSS Tags Component
@if($post->tagsArray)
<div>
<ul class="article-tags">
@foreach ($post->tagsArray as $tag)
@if($loop->index >= 2)
@continue
@endif
<li class="article-tag bg-slate-500 bg-opacity-25 text-sm py-0.5 px-1.5 m-1 rounded-lg {{ $loop->index < 1 ? 'inline' : 'hidden sm:inline' }}">
{{ $tag }}
</li>
@endforeach
</ul>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment