@extends('layouts.customer') @section('title','Queue List | SmsBox') @section('extra-css') @endsection @section('content')

Sent

{{trans('customer.compose')}} @include('customer.smsbox.common')

{{trans('customer.queue')}}

1-50/200
@foreach($queuesList as $message) @endforeach
{{trans('customer.from')}} {{trans('customer.to')}} {{trans('customer.message')}} {{trans('customer.schedule_at')}} {{trans('customer.sent_at')}}
{{$message->from}}
{{$message->to}}
{{$message->body}}
{{$message->schedule_datetime}} @if($message->schedule_completed=='yes' && $message->delivered_at==null) {{trans('customer.failed')}} @else {{$message->delivered_at}} @endif
{{$queuesList->links("pagination::bootstrap-4")}}
@endsection @section('extra-scripts') @endsection