@extends('layouts.app') @section('content')
Dashboard
@if (session('status')) @endif

{{ strftime('%B %G', $today->format('U')) }}

@csrf
{{ $errors->first('message') }}
@foreach($posts as $post)

{{ $post->date_post }}

{{ $post->content }}

@endforeach
@endsection