@if(isset($equipment['daily']))
@foreach($equipment['daily'] as $daily)
@php $total_price += $daily; @endphp
{{$daily}}pts x 1day
= {{$daily}} pts
@endforeach
@endif
@if(isset($equipment['hourly']))
@foreach($equipment['hourly'] as $hr)
@php
$hourly_data = explode('|',$hr);
$hourly_points = $hourly_data[1]/$hourly_data[0];
$total_price += $hourly_data[1];
@endphp
{{$hourly_points}}pts x {{$hourly_data[0]}}hours
= {{$hourly_data[1]}} pts
@endforeach
@endif