@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Technician Balances")}}

{{__("All Technician Balances")}}

@endsection @section("content")
@csrf {{__("Export As Excel")}}
@foreach($users as $key => $user) @if($user != 0) @else @endif @endforeach
{{__("Total")}} {{number_format($total, 2) . " IQ"}}
{{__("Technician Name")}} {{__("Balance")}}
{{$key}}{{number_format($user, 2) . " IQ"}}
@endsection @section("scripts") @endsection