@php $url_show_query = request()->query('show'); @endphp
@if (filled($post['image'])) {{ __('Post image') }} @endif

{{ str()->limit(strip_tags($post['content']), 30) }}

$post['status'] === 'published', 'text-yellow-700' => $post['status'] === 'scheduled', ])> @if ($post['status'] === \App\Extensions\SocialMedia\System\Enums\StatusEnum::published) @elseif ($post['status'] === \App\Extensions\SocialMedia\System\Enums\StatusEnum::scheduled) @else @endif @lang(str()->title($post->status->value))

{{ date('M j Y', strtotime($post->scheduled_at)) }} , {{ date('H:i', strtotime($post->scheduled_at)) }}

@php $image = 'vendor/social-media/icons/' . $post->platform?->platform . '.svg'; $image_dark_version = 'vendor/social-media/icons/' . $post->platform?->platform . '-light.svg'; @endphp
file_exists($image_dark_version), ]) src="{{ asset($image) }}" alt="{{ $post->platform?->platform }}" /> @if (file_exists($image_dark_version)) @endif
{{-- Duplicate Modal --}}

@lang('Duplicate Post')

@lang('Choose the platform to duplicate the post.')

@foreach (\App\Extensions\SocialMedia\System\Enums\PlatformEnum::cases() as $platform) @endforeach
@lang('Cancel') @lang('Duplicate')
@if ($post['status'] === 'published') @endif @if ($post['status'] !== 'published') @lang('Edit') @if($app_is_demo) @lang('Delete') @else @lang('Delete') @endif @endif