@extends('layouts.app') @section('title', 'Posts') @section('page-title', 'Posts') @section('content')

Posts

Create Post
@if(session('success'))

{{ session('success') }}

@endif
@forelse($posts as $post) @empty @endforelse
Content Platforms Status Scheduled
{{ Str::limit($post['content'] ?? '', 50) }}
@if(isset($post['platforms'])) @foreach($post['platforms'] as $platform) {{ ucfirst($platform['platform'] ?? '') }} @endforeach @endif
{{ ucfirst($post['status'] ?? 'pending') }} {{ isset($post['scheduledAt']) ? date('M d, Y H:i', strtotime($post['scheduledAt'])) : 'Now' }}
No posts found. Create your first post!
@endsection