@extends('layout.mainlayout') @section('content')
@component('components.breadcrumb') @slot('title') Network Information List @endslot @endcomponent @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

All Network Information

@can('create-networkinformation') Add New @endcan
@foreach($items as $row) @endforeach
ID Country City Operator Name Technologies Support eSIM Support Emergency Call USSD Code CSFB VoLTE Support VoLTE Call VoWiFi Support Vi WiFi Call VoWifi Working on Airplane Mode CA Combination SRVCC to 3G/2G 5G Bands 5G Infra MCC MNC VoNR 4G Bands 3G Bands 2G Bands Infra Vendor Voicemail Services UT XCAP Conference Call Support Supplementary Services Prepaid APN Dedicated Mode Band Combination(NR+LTE) 5G CA Combination OOS Comment Updated By Status Attachment Updated At Actions
{{ $row->id }} {{ $row->country }} {{ $row->city }} {{ $row->operator_name }} {{ $row->technologies_support }} {{ $row->e_sim_support }} {{ $row->emergency_call }} {{ $row->ussd_code }} {{ $row->csfb }} {{ $row->volte_support }} {{ $row->volte_call }} {{ $row->vo_wifi_support }} {{ $row->vi_wifi_call }} {{ $row->ims_working_on }} {{ $row->ca_combination }} {{ $row->srvcc_to_3G_2G }} {{ $row->band_5g }} {{ $row->g5_infra }} {{ $row->mcc_mnc }} {{ $row->vonr }} {{ $row->band_4g }} {{ $row->band_3g }} {{ $row->band_2g }} {{ $row->infra_vendor_name }} {{ $row->voicemail_services }} {{ $row->ut_xcap }} {{ $row->conference_call_support }} {{ $row->supplementary_services }} {{ $row->prepaid_apn }} {{ $row->dedicate_mode }} {{ $row->band_combination }} {{ $row->g5_ca_combination }} {{ $row->oos }} {{ $row->comment }} {{ $row->updated_by ?? '—' }} {{ $row->status ? 'Active' : 'Inactive' }} @if($row->attachment_path) View @else — @endif {{ optional($row->updated_at)->format('d M Y H:i') }} @can('update-networkinformation') Edit @endcan @can('delete-networkinformation')
@csrf @method('DELETE')
@endcan
@endsection @push('scripts') @endpush