@extends('adminlte::page') @section('content')

Daily Prices

  
 

@foreach($report as $r) @php $city = explode(',',$r['city']) @endphp @endforeach
StateST City Fuel Station Location Site Retail
Price
RP
Your
Savings
Your
Price
YP
{{$r['state']}} @if(isset($city[0]) && strlen($r['city']) > 18) {{substr($r['city'],0,18).'...'}} @elseif(isset($city[0])) {{$city[0]}} @else {{''}} @endif {{$r['fuel_provider']}} {{$r['location']}} {{$r['site']}} @if(is_numeric($r['retail_price'])) {{number_format($r['retail_price'],3)}} @else {{$r['retail_price']}} @endif @if(is_numeric($r['savings'])) {{number_format($r['savings'],3)}} @else {{$r['savings']}} @endif @if(is_numeric($r['your_price'])) {{number_format($r['your_price'],3)}} @else {{$r['your_price']}} @endif
@stop @section('css') @stop @section('js') @stop