@extends('admin.layout') @section('content') @if(session('success'))
{{ session('success') }}
@endif
@forelse ($blogs as $blog) @empty @endforelse
Title Category Featured Image External Link Actions
{{ $blog->title }} @if($blog->category) {{ $blog->category }} @else No category @endif @if($blog->featured_image) Featured Image @else No image @endif @if($blog->external_link) Visit @else No link @endif
{{-- Edit Button --}} Edit {{-- Delete Button --}}
@csrf @method('DELETE')

No blogs found

Get started by creating your first blog post

@endsection