@extends('frontend.layouts.app') @section('metatags') @endsection @section('title', 'Blog') @section('content')

Blog

@if(count($posts) !=0 )
@if($tag->posts->count() > 0) @foreach ($tag->posts as $post)
{{ $post->created_at->toFormattedDateString() }}
{{ substr(strip_tags($post->title),0, 100) }}

@foreach($post->categories as $category) {{ $category->name }} @endforeach

{!! substr(strip_tags($post->description),0, 300) !!}

Erfahre mehr!
@endforeach @endif
@else

No Post :(

@endif
@include('frontend/partials/subscribe') @endsection @section('scripts') @endsection