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

Fikstür

Tüm maçları buradan yönetebilirsiniz.

@if(request('search') || request('team') || request('status') || request('season')) Filtreleri Temizle @endif
@forelse($matches as $match) @empty @endforelse
Tarih Ev Sahibi Skor Deplasman Salon Durum Sezon İşlemler
{{ $match->tarih ? date('d.m.Y H:i', $match->tarih) : '-' }} {{ $match->homeTeam ? $match->homeTeam->takim : 'Bilinmeyen' }}
{{ $match->evsahibiSkor ?? '-' }} - {{ $match->misafirSkor ?? '-' }}
{{ $match->awayTeam ? $match->awayTeam->takim : 'Bilinmeyen' }} {{ $match->stadium ? $match->stadium->salon : 'Salon Yok' }}
{{ $match->status_text }}
{{ $match->sezon ?: '-' }}
@if($match->ui_status !== 'live')
@csrf
@endif @if($match->ui_status !== 'finished')
@csrf
@endif
@csrf @method('DELETE')
Henüz Maç Bulunmuyor
Henüz kayıtlı maç bulunmuyor. Yeni maç ekleyerek başlayabilirsiniz.
Maç Ekle
@if($matches->hasPages())
{{ $matches->links() }}
@endif
@endsection