@extends('layouts.app') @section('content')

{{ __('app.ledger_report') }}

{{ __('app.ledger_hint') }}

{{ __('app.customers') }}

@foreach($customers as $c)@endforeach
{{ __('app.name') }}{{ __('app.phone') }}{{ __('app.tazkira') }}{{ __('app.balance') }}
{{ $c->name }}{{ $c->phone }}{{ $c->tazkira ?? '-' }}{{ number_format($c->balance(),2) }}

{{ __('app.suppliers') }}

@foreach($suppliers as $s)@endforeach
{{ __('app.name') }}{{ __('app.phone') }}{{ __('app.country') }}{{ __('app.balance') }}
{{ $s->name }}{{ $s->phone }}{{ $s->country ?? '-' }}{{ number_format($s->balance(),2) }}
@endsection