@extends('layouts.app') @section('content')

Operators

@foreach($operators as $i => $operator) @endforeach
ID# Name ESim Type APN Type APN Value Info Plan Type Rechargeability Created At Updated At
{{ $i + 1 }} {{ $operator->name }} {{ $operator->esim_type ?? 'Prepaid' }} {{ $operator->apn_type ?? 'N/A' }} {{ $operator->apn_value ?? 'N/A' }} {{ $operator->info ?? '---' }} {{ $operator->plan_type ?? 'N/A' }} {{ $operator->rechargeability == 1 ? 'Yes' : 'No' }} {{ date('d M Y h:i A', strtotime($operator->created_at)) }} {{ date('d M Y h:i A', strtotime($operator->updated_at)) }}
@endsection