@props(['items'])
{{-- Se espera un array: [['title' => 'Creado', 'time' => '10:00 AM', 'icon' => 'fa-plus', 'color' => 'blue', 'body' => '...']] --}}
@foreach($items as $item)
{{ $item['time'] }}
@if(!empty($item['body']))
{!! $item['body'] !!}
@endif
@endforeach
{{-- @php
$historial = [
['title' => 'Venta Creada', 'time' => $venta->created_at->diffForHumans(), 'icon' => 'fa-shopping-cart', 'color' => 'primary', 'body' => 'Usuario: '.$venta->usuario->name],
['title' => 'Pago Recibido', 'time' => 'Hace 5 min', 'icon' => 'fa-money-bill', 'color' => 'success', 'body' => 'Ref: 123456']
];
@endphp
--}}