{{ __('Template')}}
{{ $item->template->name }}

@if ($item->timestamp_for_delivery > now()) {{ __('Scheduled for')}}: {{ date($item->timestamp_for_delivery) }} @else {{ $item->timestamp_for_delivery?$item->timestamp_for_delivery:$item->created_at}} @endif

@if ($item->is_bot) @elseif ($item->is_api) @else
{{ __('Contacts')}}
{{ $item->send_to }}

{{ round(($item->send_to/$total_contacts)*100,2) }}% {{__('of your contacts')}}

{{ __('Delivered to')}}
{{ round(($item->delivered_to/$item->send_to)*100,2) }}%

{{ $item->delivered_to }} {{ __('Contacts') }}

{{ __('Read by')}}
@if ($item->delivered_to>0) {{ round(($item->read_by/$item->delivered_to)*100,2) }}% @else 0% @endif

{{ $item->read_by }} {{ __('of the')}} {{$item->delivered_to}} {{__('Contacts messaged.')}}

@endif