@extends('layouts.app') @section('title', 'الشركات - نظام إدارة الحوالات الخارجية') @section('page-title', 'الشركات') @section('page-actions') إضافة شركة جديدة @endsection @section('content')
قائمة الشركات
@forelse($companies as $index => $company) @empty @endforelse
# اسم الشركة رقم التسجيل الرقم الضريبي البريد الإلكتروني عدد الحسابات الإجراءات
{{ $index + 1 }} {{ $company->name }} {{ $company->registration_number }} {{ $company->tax_number }} {{ $company->email }} {{ $company->bankAccounts->count() }}
لا توجد شركات
{{ $companies->links() }}
إحصائيات الحسابات المصرفية
@forelse($bankStats ?? [] as $bankStat)
{{ $bankStat->name }}

{{ $bankStat->accounts_count }} حساب

@empty
لا توجد إحصائيات متاحة.
@endforelse
@endsection