@extends('layouts.app') @section('content')
Tag @include('component.breadcrumb', ['items' => ['Web', 'Tag', 'All Tags']])
@include('component.flash')
@foreach($tags as $tag) @endforeach
Name Actions
{{$tag->name}}
{{ csrf_field() }} {{ method_field('DELETE') }} @include('component.sweetalert-delete', ['button' => '.btn-delete-'.$tag->tag_id, 'form' => '.form-delete-'.$tag->tag_id, 'text' => 'This item '.$tag->name.' will be permanently deleted'])
@stop