@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',['buttons'=>[ [ 'name'=>'Back', 'url'=> route('user.schedule-message.index'), ] ]]) @endsection @section('content')
{{ number_format($info->schedulecontacts_count ?? 0) }}

{{ __('Total Contacts') }}

{{ $info->device->phone ?? '' }}

{{ __('Phone Number (from)') }}

{{ Ucwords($info->status) }}

{{ __('Schedule Status') }}

{{ __('Receivers') }}

@foreach($contacts ?? [] as $contact) @endforeach
{{ __('From') }} {{ __('Name') }} {{ __('Number') }} {{ __('Delivery Date') }}
{{ $info->device->phone ?? '' }} {{ $contact->contact->name ?? '' }} {{ $contact->contact->phone ?? '' }} {{ Carbon\Carbon::parse($info->schedule_at)->copy()->tz($info->zone)->format('F j, Y g:i A') }}
{{ $contacts->links('vendor.pagination.bootstrap-4') }}
@endsection