@extends('layouts.app') @section('title') All Channels @endsection @section('description') All channel is here. @endsection @section('breadcrumb')
  • All Channel
  • @endsection @section('content')
    @if (session('message'))
    {{ session('message') }}
    @endif
    @forelse ($channels as $index => $channel) @if(Auth::check()) @if(Auth::user()->role=='admin') @endif @endif @empty @endforelse
    # Code Pick Name Show Name Zone Name Logo Action
    {{ $index+1 }} {{ $channel->code }} {{ $channel->pick_name }} {{ $channel->show_name }} @if ($channel->zones->exists()) No zones exist. Please Edit zone index @else {{ $channel->zones->name}} @endif Edit
    {{ csrf_field() }} {{ method_field('DELETE') }}
    No data.
    @endsection