@foreach ($pomos as $pomo)

{{ $pomo->todo->title }}

Start: {{ \Carbon\Carbon::createFromTimestamp($pomo->pomo_start)->format('d/m/Y H:i') }}
End: {{ \Carbon\Carbon::createFromTimestamp($pomo->pomo_end)->format('d/m/Y H:i') }}
Duration: {{ \Carbon\Carbon::createFromTimestamp($pomo->pomo_end) ->diff(\Carbon\Carbon::createFromTimestamp($pomo->pomo_start)) ->format('%H h %I m') }}
Notes: {{ $pomo->notes }}
Edit
@csrf @method('DELETE')
@endforeach
@if($pomos->hasMorePages())
Loading...
@else
Congratulations! You've reached the end of the list.
@endif