@extends('layouts.app') @section('title', 'Posts') @section('page-title', 'Posts') @section('content')
{{ session('success') }}
| 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! | |||