@extends ('layouts.in') @section ('body')
@if ($vehicles_multiple)
@endif
@if ($vehicles_multiple) @endif @foreach ($list as $row) @php ($link = route('refuel.update', $row->id)) @if ($vehicles_multiple) @endif @endforeach @if ($totals) @endif
{{ __('refuel-index.vehicle') }}{{ __('refuel-index.date_at') }} {{ __('refuel-index.distance_total') }} {{ __('refuel-index.distance') }} {{ __('refuel-index.quantity') }} {{ __('refuel-index.price') }} {{ __('refuel-index.total') }}
{{ $row->vehicle->name }}{{ $row->date_at }} @unitHumanRaw('distance', $row->distance_total, 0) @unitHumanRaw('distance', $row->distance, 0) @unitHumanRaw('volume', $row->quantity) @unitHumanRaw('money', $row->price, 3) @unitHumanRaw('money', $row->total)
@unitHumanRaw('distance', $totals->distance, 0) @unitHumanRaw('volume', $totals->quantity) @unitHumanRaw('money', $totals->price, 3) @unitHumanRaw('money', $totals->total)
@stop