@extends('admin.layout') @section('content')

Tags page it all tags here

All Tags

Add
@foreach($tags as $tag) @endforeach
ID Name Change/delete
{{$tag->id}} {{$tag->title}} {{Form::open(['route'=>['tags.destroy', $tag->id], 'method'=>'delete'])}} {{Form::close()}}
@endsection