@extends('layouts.app') @section('title', 'Social Media Scheduler') @section('styles') @endsection @section('content')

Social Media Scheduler

@if (session('success')) @endif
Scheduled Posts
Upcoming Posts
@forelse($scheduledPosts as $post)
@foreach($post->platforms as $platform) @endforeach {{ $post->scheduled_at->format('M d, Y - h:i A') }}

{{ Str::limit($post->content, 150) }}

@if($post->media_count > 0) {{ $post->media_count }} media @endif
@csrf @method('DELETE')
@empty
No Upcoming Posts

Schedule your first post to start sharing content across your social media platforms.

@endforelse
@endsection @section('scripts')