{{-- Name: receiverList.partials.sendoutList Author: Mikael Strömgren Created: 2017-02-27 Updated by: Description: receiverlist.partials.sendoutList displays an list for receiverlist.index --}} @extends('partials.box') @section($content_id)
{{ Lang::get('dashboard.sendout.table.name') }}
{{ Lang::get('dashboard.sendout.table.startdate') }}
@if (!$data->isEmpty()) @foreach($data as $key => $sendout)
{{ $sendout->start_time->format('Y-m-d H:i')}}
@endforeach @else

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

@endif  
@stop