{{-- Name: home.partials.list.blade Author: AL Created: 2015-10-01 Description: Sendout list for dashboard Updated by: BH Description: Re-factored the tablesctructure Created: 2016-03-02 --}} @extends('partials.box') @section($content_id)
{{ Lang::get('dashboard.sendout.table.status') }}
@if(\Request::route()->getName() == 'admin.index')
{{ Lang::get('dashboard.sendout.table.company') }}
@endif
{{ Lang::get('dashboard.sendout.table.name') }}
{{ Lang::get('dashboard.sendout.table.startdate') }}
@if (!$data_sendouts->isEmpty()) @foreach($data_sendouts as $key => $sendout) @if($sendout->company)
@if($sendout->statusType() == 1 ) {{ Lang::get('dashboard.sendout.inProgress') }} @elseif($sendout->statusType() == 2) {{ Lang::get('dashboard.sendout.scheduled') }} @elseif($sendout->statusType() == 3) {{ Lang::get('dashboard.sendout.completed') }} @elseif($sendout->statusType() == 0) {{ Lang::get('dashboard.sendout.failed') }} @endif
@if(\Request::route()->getName() == 'admin.index') @endif
{{ $sendout->start_time->format('Y-m-d H:i')}}
@endif @endforeach @else

{{ Lang::get('dashboard.sendout.empty') }}

@endif
@if(!$data_sendouts->isEmpty() && count($data_sendouts) >= 5 && \Request::route()->getName() != 'admin.index')
{{ Lang::get('sendout.seeMore') }}
@endif @stop