@extends('layouts.admin') @section('admin-content')

All Clubs

Manage all clubs on the platform

@if($clubs->isEmpty())

No clubs found. Create your first club to get started.

@else
@foreach($clubs as $club)
@if($club->cover_image) {{ $club->club_name }} @else
@endif @if($club->logo)
{{ $club->club_name }} logo
@endif
Admin
@if($club->rating)
{{ number_format($club->rating, 1) }}
@endif

{{ $club->club_name }}

@if($club->location)
{{ $club->location }}
@endif

{{ $club->members_count ?? 0 }}

Members

{{ $club->packages_count ?? 0 }}

Packages

{{ $club->trainers_count ?? 0 }}

Trainers

@endforeach
@endif
@push('styles') @endpush @push('scripts') @endpush @endsection