{{-- Name: receiver.partials.history.blade Author: Arto Laine Created: 2015-09-28 Description: This blade is used to list sendout histry data in a partials.box Updated by: Description: Params: content_id - String, Unique string used by blade to prevent duplication of content when multiple instances of the same element is used Example: @include('receiver.partials.history', [ 'content_id' => 'unique_identifier', 'header_title' => 'Statistik' ]) --}} @extends('partials.box') @section($content_id) @foreach ($receiver->stats as $stat)

{{ $stat->sendout->name }}

{{ (empty($stat->send_time)) ? Lang::get('receiver.sendoutInQueue') : $stat->send_time }}

@endforeach @stop