@extends('admin.layouts.app') @section('title', 'Salonlar - CBL Admin Panel') @section('breadcrumbs') Dashboard / Salonlar @endsection @section('content')

Salonlar

Tüm salonları yönetin.

@if($stadiums->count() > 0)
@foreach($stadiums as $stadium) @endforeach
Salon Adı Adres Google Maps Sezon Maç Sayısı İşlemler
{{ $stadium->salon }}
{{ $stadium->adres }}
@if(!empty($stadium->adres)) Haritada Gör @else - @endif
{{ $stadium->sezon }}
{{ $stadium->matches_count ?? 0 }}
@csrf @method('DELETE')
@if($stadiums->hasPages())
{{ $stadiums->links() }}
@endif @else
Henüz salon bulunmuyor
İlk salonu eklemek için aşağıdaki butona tıklayın.
İlk Salonu Ekle
@endif
@endsection