@extends('layouts.app') @section('content')
@foreach($posts as $post) {{-- todo: set proper href link for post entry--}} @endforeach
# Title Date
{{$post->id}} {{$post->title}} {{$post->created_at->format("y-m-d")}}
@endsection