@extends('layouts.admin') @section('title', $zone->name) @section('page_title', __('Zone') . ' - ' . $zone->name) @section('content')
{{ $zone->name }}

{{ $zone->code }}


المدير: {{ $zone->manager?->name ?? 'لا يوجد' }}

{{ __('Status') }}: @if($zone->is_active){{ __('Active') }} @else{{ __('Inactive') }}@endif

@if($zone->notes)

{{ $zone->notes }}

@endif

{{ $zone->customers()->count() }}

عملاء

{{ $zone->users()->count() }}

مستخدمين
العملاء في هذه المنطقة
@forelse($zone->customers()->latest()->limit(20)->get() as $c) @empty @endforelse
الكودالاسمالهاتف{{ __('Type') }}الرصيد
{{ $c->code }}{{ $c->name }}{{ $c->phone }}{{ __($c->type) }}{{ number_format((float) $c->balance, 2) }}
لا يوجد عملاء
@endsection