@extends('main') @section('title' , "| $tag->name Tag") @section('content')

Tag o nazwie: {{ $tag->name }} {{ $tag->posts()->count() }} posty:

Edycja
{{ Form::open(['route' => ['tags.destroy' , $tag->id], 'method' => 'DELETE']) }} {{ Form::submit('Delete', ['class' => 'btn btn-danger btn-block edit-show-button']) }} {{ Form::close() }}
@foreach($tag->posts as $post) @endforeach
# Tytuł Tagi
{{ $post->id }} {{ $post->title }} @foreach ($post->tags as $tag) {{ $tag->name }} @endforeach Widok
@endsection