@extends('layouts.app') @section('title') All Channels in {{ $zones->name }} @endsection @section('breadcrumb')
  • All Zone
  • {{ $zones->name }}
  • @endsection @section('content')
    {{ $channels->links() }}
    @forelse ($channels as $index => $channel) @empty @endforelse
    # Show Name Pick Name Zone Name Logo
    {{ $index+1 }} {{ $channel->show_name }} {{ $channel->pick_name }} {{ $channel->zones->name }}
    No data.
    @endsection