{{-- Header Actions --}}

Bulk Post Scheduler

Upload a CSV to schedule multiple posts at once.

{{-- CSV Upload --}}

Upload CSV File

Select your CSV file

Columns: date, time, timezone, platform, caption, media_filename, hashtags, status

Parsing CSV...
@if(!empty($errors))
@foreach($errors as $err)

{{ $err }}

@endforeach
@endif
{{-- Preview Table --}} @if(!empty($rows))

Preview

{{ $this->validCount }} valid row(s) out of {{ count($rows) }} total.

@if($importing)
Importing... {{ $importDone }} / {{ $importTotal }}
@endif
@foreach($rows as $row) @endforeach
Status Date Time Platform Caption Hashtags Message
@if($row['_status'] === 'valid') Valid @elseif($row['_status'] === 'imported') Imported @else Error @endif {{ $row['date'] ?? '' }} {{ $row['time'] ?? '' }} {{ $row['platform'] ?? '' }} {{ \Illuminate\Support\Str::limit($row['caption'] ?? '', 60) }} {{ $row['hashtags'] ?? '' }} {{ $row['_message'] ?? '' }}
@endif