@extends('layouts.site') @section('title', $post->localizedTitle()) @section('content') @php($lc = ['locale' => app()->getLocale()])
← {{ __('site.account_tab_commissions') }}
@if ($post->image) @endif

{{ $post->category?->localizedName() }} · {{ $post->formattedPublishedAt() }}

{{ $post->localizedTitle() }}

@if ($post->localizedExcerpt() !== '')

{{ $post->localizedExcerpt() }}

@endif
@foreach ($post->bodyBlocks() as $block) @if (($block['type'] ?? '') === 'text')

{{ $block['content'] ?? '' }}

@elseif (($block['type'] ?? '') === 'image' && ! empty($block['path']))
{{ $block['alt'] ?? '' }}
@endif @endforeach
@endsection