@extends('layouts.app') @section('header')

Blogs

Create New Blog
@endsection @section('content')
Blogs
@foreach($blogs as $blog) @endforeach
ID Title Thumbnail Status Created By Created At Action
{{$blog->id}} {{$blog->title}} {{$blog->status_name}} {{$blog->createdBy !== null ? $blog->createdBy->name : ''}} {{$blog->created_at}} Show Edit
@method('delete') @csrf
{{ $blogs->links() }}
@endsection