@extends('admin.layouts.master') @section('title') القنوات @endsection @section('css') @endsection @section('content-header')

القنوات

@endsection @section('content')
@if(auth('subscriber')->check()) @if(checkPackage(auth('subscriber')->id() , 'القنوات')) @include('admin.channels.create') @else @endif @else @include('admin.channels.create') @endif
@include('admin.messages')
@foreach($data as $row) @include('admin.channels.employee') @include('admin.channels.edit') @include('admin.channels.deleted') @endforeach
# اسم القناة وصف القناة رقم الهاتف الرقم التعريفي اسم المشترك الموظف المسئول حاله القناة المحادثات العمليات
{{$loop->index+1}} {{$row->name}} {{$row->notes}} {{$row->phone}} {{$row->number_id}} {{$row->subscriber->name ?? 'اداره فاروق جروب'}} @foreach($row->chanelemployee as $chanelemployee) @if ($chanelemployee->employee_id)
  • {{ $chanelemployee?->employee?->name }} ({!! $chanelemployee->employee->type() !!})

  • @endif @endforeach
    status == "active" ? "checked" : null}} type="checkbox" role="switch" id="flexSwitchCheckDefault{{$row->id}}" onchange="updateStatus(this.checked, {{$row->id}})">
    @endsection @section('js') @endsection