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

Dashboard

Create New Blog
@endsection @section('content')
Blogs
@foreach($blogs as $blog) @endforeach
ID Title Thumbnail Created By Created At
{{$blog->id}} {{$blog->title}} {{$blog->createdBy->name}} {{$blog->created_at}}
@endsection