@extends('layouts.tab')
@section('planner_content')
@if (session('success')) @endif

Channel Categories & Channels

Add Channel Category
@csrf
@forelse($categorieslist as $category)
{{ $category->name }}
@csrf @method('DELETE')
    @forelse ($category->channels ?? [] as $channel)
  • {{ $channel->name }}
    @csrf @method('DELETE')
  • @empty
  • No channels in this category.
  • @endforelse
@csrf
@empty
No channel categories found.
@endforelse
@endsection