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

Club Details

Manage your club information

Basic Information

{{ $club->club_name }}

{{ $club->slug }}

{{ $club->description ?? 'No description provided' }}

{{ $club->email ?? 'Not set' }}

@if($club->phone) {{ is_array($club->phone) ? implode(', ', $club->phone) : $club->phone }} @else Not set @endif

{{ $club->address ?? 'Not set' }}

Club Logo
@if($club->logo) {{ $club->club_name }} @else
@endif
Settings

{{ $club->currency ?? 'BHD' }}

{{ $club->timezone ?? 'Asia/Bahrain' }}

{{ $club->currency ?? 'BHD' }} {{ number_format($club->enrollment_fee ?? 0, 2) }}

Location

{{ $club->gps_lat ?? 'Not set' }}

{{ $club->gps_long ?? 'Not set' }}

@if($club->gps_lat && $club->gps_long)
@endif
@endsection