@extends('layouts.app')
@section('title', 'Channels List')
@section('content')
{{-- Alert Messages --}}
@include('common.alert')
Code |
Name |
Description |
Status |
Action |
@foreach ($channels as $row)
{{ $row->code }} |
{{ $row->name }} |
{{ $row->description }} |
@if ($row->status == 0)
Inactive
@elseif ($row->status == 1)
Active
@endif
|
@if ($row->status == 0)
@elseif ($row->status == 1)
@endif
|
@endforeach
{{ $channels->links() }}
@if ($channels->count() > 0 )
@if(isset($channels) && !empty($channels))
@include('Channels.delete-channelmodel')
@endif
@endif
@endsection
@section('scripts')
@endsection