@extends('layouts.app') @section('title', 'Manage Accounts') @section('content')

Manage Accounts

Current Plan: Business | You have {{ $accounts->count() }} social accounts
Add New Social Account

Accounts

A list of all the accounts including their Name, Platform and Token expiry.

@forelse($accounts as $acc) @empty @endforelse
Account Name Platform Workspace Actions
{{ $acc->name }}
ID: {{ $acc->api_id }}
Facebook Page
@php $ws = $workspaces->where('id', $acc->workspace_id ?? session('active_workspace_id'))->first(); @endphp @if($ws) {{ substr($ws->name, 0, 1) }} - {{ $ws->name }} @else Unassigned @endif

No accounts found.

Connect one now
@endsection