@use('Carbon\Carbon') @extends('layouts.app') @section('title', $post->title) @section('description', $post->description) @if($post->thumbnail) @section('og_image', $post->thumbnail) @endif @push('meta_tags') {{-- Schema.org for SEO --}} @endpush @section('content')
{{ Carbon::parse($post->date)->format('F d, Y') }} {{ ceil(str_word_count(strip_tags($post->contents)) / 200) }} min read

{{ $post->title }}

@if($post->description)

{{ $post->description }}

@endif @if($post->thumbnail)
{{ $post->title }}
@endif
{!! $post->contents !!}
@if(isset($post->tags) && count($post->tags) > 0)

Topics

@foreach($post->tags as $tag) #{{ $tag }} @endforeach
@endif
H

Heimerdinger.LoL

Your ultimate source for League of Legends news, guides, and tools. Bringing you the smartest updates from the Rift.

@if($related && $related->count() > 0)

Read Next

@endif
@endsection