@extends('header') @section('title', 'Blog') @section('otherConetent')

BLOG POST

@foreach ($blogDatas as $blogData) @if ($blogDatas->isEmpty())

Blog Empty

@endif
{{ $blogData->alt_name }}
{{ Carbon\Carbon::parse($blogData->created_at)->diffForHumans() }} | BY {{$blogData->users[0]->name}}

{{ $blogData->title }}

@endforeach
{{ $blogDatas->links() }}
@endsection