View Running Text
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error') || $errors->any())
@if (session('error'))
{{ session('error') }}
@endif
@foreach ($errors->all() as $error)
@endif
{{ $error }}
@endforeach
Running Text Details
Running Text Content {{ $runningText->is_active ? 'Active' : 'Inactive' }}
{!! nl2br(e($runningText->content)) !!}
Information
| Status: | @if ($runningText->is_active) Active @else Inactive @endif |
| Created: | {{ $runningText->created_at->format('M d, Y \a\t H:i') }} |
| Last Updated: | {{ $runningText->updated_at->format('M d, Y \a\t H:i') }} |
| Characters: | {{ strlen($runningText->content) }} / 1000 |