@extends('admin.layout.app') @section('content')

Blog Management

@php $sr = 1 @endphp @forelse($blogs as $blog) @empty @endforelse
S.No. Category Title Image Status Action
{{ $sr++ }} {{$blog->blogCategory ? $blog->blogCategory->title : ''}} {{$blog->title ?? ''}} Image @if($blog->status == 1) Active @else Inactive @endif
@endsection