@if($posts->isEmpty())
No posts yet. Create your first post!
Create Post
@else
| Content |
Media |
Platforms |
Status |
Scheduled |
Actions |
@foreach($posts as $post)
|
{{ Str::limit($post->content, 100) }}
|
@if($post->media_path)
@if($post->media_type === 'video')
Video
@else
@endif
@else
—
@endif
|
@foreach($post->platforms as $platform)
@endforeach
|
{{ $post->status_label }}
|
@if($post->scheduled_at)
{{ $post->scheduled_at->format('M d, Y H:i') }}
@elseif($post->published_at)
{{ $post->published_at->format('M d, Y H:i') }}
@else
—
@endif
|
@if(in_array($post->status, ['draft', 'scheduled']))
@endif
@if($post->status === 'scheduled')
@endif
|
@endforeach
{{ $posts->links() }}
@endif