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

{{__("User Balances")}}

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

@endsection @section("content")
{{__('Export As Excel')}}
@foreach($users as $user => $balance) @endforeach
{{__("Total")}} {{number_format($total, 2) . " SR"}}
{{__("User")}} {{__("Balance")}}
{{$user}} {{number_format($balance, 2) . " SR"}}
@endsection @section("scripts") @endsection