@extends('admin.layouts.app') @section('panel')
@forelse($batches as $batch) @empty @endforelse
@lang('S.N.') @lang('Batch Number') @lang('Date') @lang('Total SMS') @lang('Total Delivered') @lang('Total Pending') @lang('Total Processing') @lang('Total Schedule') @lang('Total Failed')
{{ __($batches->firstItem() + $loop->index) }} {{ __($batch->batch_id) }} {{ showDateTime(@$batch->created_at) }}
{{ __(diffForHumans($batch->created_at)) }}
{{ __(@$batch->sms->count()) }} {{ __(@$batch->sms->where('status', 1)->count()) }} {{ __(@$batch->sms->where('status', 2)->count()) }} {{ __(@$batch->sms->where('status', 4)->count()) }} {{ __(@$batch->sms->where('status', 3)->count()) }} {{ __(@$batch->sms->where('status', 9)->count()) }}
{{ __($emptyMessage) }}
@if ($batches->hasPages()) @endif
@endsection