@extends('adminlte::page') @section('title', 'Dashboard') @section('content_header') @stop @section('content') @if ($errors->any())
Whoops! There were some problems with your input.

@endif

Edit Fuel Cost: {{$cost['date']}}

Total USD: {{number_format($cost['total_usd'],2)}}

Total CAN: {{number_format($cost['total_can'],2)}}

@csrf @method('POST')
Cost Date:
    
@foreach($brokers as $broker)
{{$broker['name']}}:
@if(isset($cost['brokers'][$broker['id']])) @endif @endforeach
   
@csrf
@endsection @section('css') @stop @section('js') @stop