@extends('layouts.app') @section('content')
@include('partials.header') @include('partials.sidebar')

Running Text Management

@if (session('success')) @endif @if (session('error') || $errors->any()) @endif
@forelse ($runningTexts as $runningText) @empty @endforelse
Content Status Created At Actions
{{ Str::limit(strip_tags($runningText->content), 100) }}
is_active ? 'checked' : '' }} onchange="updateActiveStatus({{ $runningText->id }}, this.checked)" data-running-text-id="{{ $runningText->id }}">
{{ $runningText->created_at->format('M d, Y H:i') }}
@csrf @method('DELETE')

No running texts found.

Create First Running Text
@endsection