@extends('layouts.app') {{-- Article-specific SEO overrides the defaults from layouts.app --}} @push('schema') @endpush @section('seo') @endsection @section('content')

{{ $post->title }}

· {{ reading_time($post->body) }}

{{-- Post bodies are trusted admin/seeder HTML. If untrusted authors are ever allowed, run this through an HTML sanitizer (e.g. mews/purifier) before rendering. --}} {!! $post->body !!}

Try it yourself

Paste any public Instagram link and save it in seconds.

Open the downloader
@if($related->isNotEmpty())

Related articles

@foreach($related as $rel)
@endforeach
@endif
@endsection