@extends('layouts.app') @section('title', 'Dashboard') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

All Posts

@foreach($posts as $post) @endforeach
{{ $post->content }} Pending {{ date('jS M Y', strtotime($post->created_at)) }} {{ $post->tags }}
@endsection @section('js') @endsection