@extends('layouts.admin') @section('content')

Posts

@if($posts) @foreach($posts as $post) @endforeach @endif
id Owner category Photo title body create update
{{$post->id}} {{$post->user->name}} {{$post->category_id}} {{$post->title}} {{$post->body}} {{$post->created_at->diffForHumans()}} {{$post->updated_at->diffForHumans()}}
@endsection