@extends('layouts.admin.app') @section('content')
Manage your blog posts here.
@foreach ($posts as $post) @endforeach
{{ __('Post #') }} Image Title {{ __('Created at') }} {{ __('Updated in') }} Actions
{{ $post->id }} {{ $post->title }} {{ $post->created_at }} {{ $post->updated_at->diffForhumans() }}
@if ($posts->hasPages()) @endif
@endsection