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

Pages

Manage dynamic pages like Privacy Policy, Terms, etc.

{{-- Add New Page Button (replace existing one) --}} Add New Page
@include('crm.components.alerts') @forelse($pages as $key => $page) {{-- edit modal--}} @empty @endforelse
S.No Title Slug Status Created Actions
{{ $key + 1 }}
{{ $page->title }}
{{ Str::limit(strip_tags($page->description), 50) }}
/{{ $page->slug }} {{ $page->status == '1' ? 'Active' : 'Inactive' }} {{ $page->created_at->format('d M, Y') }}

No pages found

@endsection @section('page-script') @endsection