@extends('layouts.app')
@section('title')
All ICCIDs
@endsection
@section('description')
All iccids is here.
@endsection
@section('breadcrumb')
All ICCIDs
@endsection
@section('content')
# |
ICCID |
Device ID |
Phone Number |
Quota Left |
@forelse ($iccids as $index => $iccid)
{{ $index+1 }} |
{{ $iccid->iccid }} |
@if($iccid->node()->exists())
{{ $iccid->node->device_id }}
@else
-
@endif
|
{{ $iccid->phone_number }} |
{{ $iccid->quota }} MB |
@empty
No data. |
@endforelse
@endsection