@extends('layout') @section('title', $article->title.' | '.$tenant->name) @section('meta_description', $article->excerpt ?: \Illuminate\Support\Str::limit(strip_tags($article->body),155)) @section('body') @include('partials.public-theme') @include('partials.public-nav')
← Artikel
@if($article->cover_url)@endif

{{ $article->category ?: 'Artikel' }}

{{ $article->title }}

{{ $article->published_at?->format('d M Y H:i') }}

{{ $article->body }}
@if($article->tags)
@foreach($article->tags as $tag)#{{ $tag }}@endforeach
@endif
@endsection