From a1cabcbed3c61b5f159b68a41c918fdc307c2b69 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 28 Apr 2015 10:50:43 +0200 Subject: [PATCH] Show tag icons. --- resources/views/tags/index.blade.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/resources/views/tags/index.blade.php b/resources/views/tags/index.blade.php index 6622f886bf..f489efb62e 100644 --- a/resources/views/tags/index.blade.php +++ b/resources/views/tags/index.blade.php @@ -42,14 +42,26 @@

- Create new tag + Create new tag

@if(count($tags) == 0) No tags @else @foreach($tags as $tag) -

{{$tag->tag}}

+ +

+ @if($tag->tagMode == 'nothing') + + @endif + @if($tag->tagMode == 'balancingAct') + + @endif + @if($tag->tagMode == 'advancePayment') + + @endif + {{$tag->tag}} +

@endforeach @endif