@extends('super_admin.layout.master') @section('title', 'الإدارة المركزية') @section('style') @endsection @section('content')
إضافة
@foreach ($branches as $branch) @php $eventCount = $branch->getMonthlyEventCount() ?? 0; $eventConformingCount = $branch->getMonthlyEventConformingCount(); $percentage = ($eventCount == 0) ? 0 : round((($eventConformingCount / $eventCount) * 100),2); @endphp @endforeach
# الاسم الانشطة الاحداث المتطوعين الجدد الاجرائات
{{ $loop->iteration }} {{ $branch->name }} {{ $branch->activities->count() }}
{{ $percentage }}%
{{ $branch->getNewVolunteersCount() }}
@endsection @section('script') @endsection