@extends('layouts.app') @section('content')
{{$blog->created_at->format('M d, Y')}}
{{$blog->title}}
{!!$blog->content!!}
@foreach ($blog->images as $image)
@endforeach
@endsection