@extends('layouts.student') @section('title', 'My Clubs') @section('content') @if ($clubs->isEmpty()) @else
@foreach ($clubs as $club) @endforeach
ClubCategoryPatronMembers
{{ $club->name }} {{ ucfirst($club->category ?? '—') }} {{ $club->patron?->full_name ?? '—' }} {{ $club->students_count }} Open Chat
@endif
@endsection