@extends('layout') @section('title', $channel->name) @section('content')

← Channels

{{ $channel->name }}

@if($channel->description)

{{ $channel->description }}

@endif

Connected accounts

@foreach($platforms as $platform) @php $account = $channel->socialAccounts->firstWhere('platform', $platform->key()); @endphp

{{ $platform->label() }}

@if($account && $account->status === 'connected') connected

{{ $account->account_name ?: $account->external_id }}

@csrf @method('DELETE')
@elseif($account) {{ $account->status }}

{{ $account->account_name ?: $account->external_id }} — needs reconnect

Reconnect {{ $platform->label() }} @else not connected

Connect {{ $platform->label() }}

@endif
@endforeach

Series

+ New series
@if($channel->series->isEmpty())

No series yet — create one to schedule recurring auto-posted videos.

@else
@foreach($channel->series as $s)

{{ $s->name }}

{{ $s->status }} · {{ $s->cadence }} @if($s->viral)· 🔥@endif
@endforeach
@endif
@csrf @method('DELETE')
@endsection