@extends('layouts.app') @section('title', 'All Posts - Social Scheduler') @section('content')

All Posts

Back to Admin
@foreach($posts as $post) @endforeach
ID User Content Platforms Status Scheduled Actions
{{ $post->id }} {{ $post->user->name }}
{{ Str::limit($post->content, 60) }}
@foreach($post->platforms as $platform) @endforeach {{ $post->status_label }} @if($post->scheduled_at) {{ $post->scheduled_at->format('M d, H:i') }} @else — @endif
@if($post->status === 'scheduled')
@csrf
@endif
@csrf @method('DELETE')
{{ $posts->links() }}
@endsection