@extends('layouts.app') @section('title', 'Manage Accounts') @section('content')
A list of all the accounts including their Name, Platform and Token expiry.
| 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 |
|||