@extends('layouts.app')
@section('content')
{{__('Average equipment consumption')}}
@foreach($statistic as $cli=>$stat)
@if(empty($stat))
@continue
@endif
@if($cli == 'klijent')
M:SAT DTH {{$from.' - '.$to}}
@endif
@if($cli == 'klijenti_optika')
{{__("OPTICS")}}" {{$from.' - '.$to}}
@endif
@if($cli == 'klijenti_bakar')
{{__("COPPER")}}" {{$from.' - '.$to}}
@endif
{{$monter}}
@foreach($stat as $nmb)
{{$nmb->naziv}} |
{{number_format($nmb->kol_prosek, 2)}} |
@endforeach
@endforeach
@endsection