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