@extends('admin.master') @section('content')

CTA Section Management

Manage CTA section title, subtitle and status

Add New
@if(session('success'))
{{ session('success') }}
@endif
@forelse($ctaSections as $key => $item) @empty @endforelse
# Title Subtitle Status Created At Action
{{ $ctaSections->firstItem() + $key }} {{ $item->title }} {{ $item->subtitle }} @if($item->is_active) Active @else Inactive @endif {{ $item->created_at->format('d M Y') }}
Edit
@csrf @method('DELETE')
No data found
{{ $ctaSections->links() }}
@endsection