@extends('sendportal::layouts.app') @section('title', __('Campaign Status')) @section('heading') {{ __('Campaign Status') }} @stop @section('content')
{{ __('Your campaign is currently') }} {{ strtolower($campaign->status->name) }}
@if ($campaign->queued) Your campaign is queued and will be sent out soon. @elseif ($campaign->cancelled) Your campaign was cancelled. @else {{ $campaignStats[$campaign->id]['counts']['sent'] }} out of {{ $campaignStats[$campaign->id]['counts']['total'] }} messages sent. @endif
@stop