@extends('layouts.admin')
@section('title', 'Blog Posts')
@section('content_header')
Blog Posts
@stop
@section('content')
| Sr. No. |
Title |
Category |
Image |
Actions |
@foreach($blogs as $post)
| {{ $loop->iteration }} |
{{ $post->title }} |
{{ $post->category->name ?? 'N/A' }} |
@if($post->image)
@else
N/A
@endif
|
View
Edit
|
@endforeach
@stop