@if (session()->has('alert')) @slot('type', session('alert')['type']) @slot('msg', session('alert')['msg']) @endif @if ($errors->any()) @endif {{-- end breadcrumb --}} @if (!session()->has('selectedDevice'))
{{ __('Please select a device first') }}
@else {{-- table --}}
{{ __('Blast History') }}
{{ __('Total:') }} {{ $blasts->total() }}
@forelse ($blasts as $blast) @empty @endforelse
{{ __('Receiver') }} {{ __('Status') }} {{ __('Last Updated') }}
{{ $blast->receiver }} @if ($blast->status == 'success') {{ __('Sent') }} @elseif ($blast->status == 'pending') {{ __('Pending') }} @else {{ $blast->status }} @endif {{ \App\Traits\ConvertsDates::convertToUserTimezone($blast->updated_at) }}

{{ __('No records found') }}
{{ $blasts->links('pagination::bootstrap-5') }}
{{-- end table --}} @endif