@extends('adminLayout::index')
@section('pageContent')
{{ __('admin/stories.show_desc') }}
@unless($storyData->isExpired())
@endif
{{ __('table.labels.author') }}
{{ $storyData->story->user->name }}
{{ __('table.labels.type') }}
{{ $storyData->type->label() }}
{{ __('table.labels.duration') }}
{{ $storyData->duration_seconds }}
{{ __('table.labels.expires_at') }}
{{ $storyData->expires_at->getFormatted() }}
{{ __('table.labels.is_highlight') }}
{{ $storyData->is_highlight ? '✅' : '❌' }}
#ID
{{ $storyData->id }}
{{ __('table.labels.created_at') }}
{{ $storyData->created_at->getFormatted() }}
@endsection