@extends('layout') @section('title', 'Channels') @section('content')
@csrf
@if($channels->isEmpty())

No channels yet — create one above, then connect its social accounts.

@else
@foreach($channels as $channel)

{{ $channel->name }}

@if($channel->description)

{{ $channel->description }}

@endif

{{ $channel->social_accounts_count }} account(s) · {{ $channel->series_count }} series

@endforeach
@endif @endsection