@foreach($resume as $item)
@if($item['time'])
@endif
@if($item['title'])
{{ $item['title'] }}
@endif
@if($item['description'])
{{ $item['description'] }}
@endif
@php
$rating = explode('/', $item['subtitle']);
$total = count($rating) > 1 ? $rating[1] : null;
$rating = $rating[0];
@endphp
{{ $rating }}@if($total)/{{ $total }}@endif
@endforeach