@extends('layouts.app') @section('title', 'إدارة العملاء') @section('page_title', 'إدارة العملاء (المستأجرون)') @section('content')

قائمة العملاء

عميل جديد
@forelse($tenants as $tenant) @empty @endforelse
العميل الاشتراك المستخدمون الفواتير الحالة الإجراءات

{{ $tenant->name }}

{{ $tenant->currency }}

{{ match($tenant->subscription_status) { 'active'=>'نشط', 'trial'=>'تجريبي', 'expired'=>'منتهي', default=>$tenant->subscription_status } }} @if($tenant->subscription_expires_at)

{{ $tenant->subscription_expires_at->format('d/m/Y') }}

@endif
{{ $tenant->users_count }} {{ $tenant->sales_invoices_count }} {{ $tenant->is_active ? 'مفعّل' : 'معطّل' }}
@csrf
لا يوجد عملاء بعد
{{ $tenants->links() }}
@endsection