@extends('layouts.app') @section('page-title', 'Total Gyms') @section('content')

All Gyms ({{ $gyms->count() }})

Add New Gym
@forelse($gyms as $gym) @empty @endforelse
ID Name City Payment Type Rent Amount Phone Email Status Action
#{{ str_pad($gym->id, 6, '0', STR_PAD_LEFT) }} {{ $gym->name }} {{ $gym->city ?? 'N/A' }} @if($gym->payment_type == 'rent') Rent @else Bought @endif @if($gym->payment_type == 'rent') Rs {{ number_format($gym->rent_amount, 2) }} @else Sold @endif {{ $gym->phone ?? 'N/A' }} {{ $gym->users()->where('role', 'gym_owner')->first()?->email ?? 'N/A' }} @if($gym->is_active) Active @else Inactive @endif
No gyms found.
@endsection @push('scripts') @endpush