@extends('layouts.app') @section('page-title', 'Platform Accounts') @section('content')
Add Platform Account

Platform Accounts

Manage your social media platform accounts for posting

@if($accounts->isEmpty())

No platform accounts configured

Add your first platform account to start posting articles

Add Platform Account
@else
@foreach($accounts as $account) @endforeach
Platform Account Status Last Tested Actions
{{ $account->platform }} @if($account->is_active) Active @endif
{{ $account->username }}
{{ $account->instance_url }}
{{ ucfirst($account->status) }} {{ $account->last_tested_at ? $account->last_tested_at->format('Y-m-d H:i') : 'Never' }}
@if(!$account->is_active)
@csrf
@endif Edit
@csrf @method('DELETE')
@endif
@endsection