@extends('layouts.app') @section('content')

Platform Channels

Manage channels for publishing content

Add New Channel
@if(session('success'))
{{ session('success') }}
@endif
@if($channels->count() > 0)
    @foreach($channels as $channel)
  • {{ $channel->display_name ?? $channel->name }}
    @if(!$channel->is_active) Inactive @else Active @endif {{ $channel->platformInstance->name }}
    {{ $channel->name }}
    @if($channel->description)
    {{ Str::limit($channel->description, 100) }}
    @endif
    @csrf
    View Edit
    @csrf @method('DELETE')
  • @endforeach
@else

No channels yet

Get started by adding your first publishing channel.

Add New Channel
@endif
@endsection