@if(count($result['channelsData'])>0)
@foreach ($result['channelsData'] as $rsVal)
{{ $rsVal->id }} |
{{ $rsVal->name }} |
@if($rsVal['is_active'] == '1')
Active
@else
Inactive
@endif
|
{{ date('d-m-Y H:i:s', strtotime($rsVal->created_at)) }} |
|
@endforeach
|
@else
No record found |
@endif