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

Blogs

Manage Blogs.

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

No Blogs found

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