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

All Organizations

@forelse($organizations as $key => $org) @empty @endforelse
S.No. Organization Created Date Total Employees Surveys Completed In Progress Partially Filled
{{ $key + 1 }} {{ $org->organization_name }} {{ date('d-m-Y', strtotime($org->created_at)) }} {{ $org->total_employees }} {{ $org->surveys_completed }} {{ $org->surveys_in_progress }} {{ $org->partially_filled }}
No Organization Found
@endsection