@extends('layouts/layout') @section('content')

Championships

@forelse ($championships as $championship) @empty @endforelse
Championship Game Recurring Time (minutes) Lots Per Number Price Per Lot Fee Waived Status Updated At Action
{{ $championship->name }}
{{ $championship->description }}
Star Clash {{ $championship->recurring_in_minutes }} {{ number_format($championship->lots_per_number) }} ${{ number_format($championship->price_per_lot) }} {{ $championship->transaction_fee_waived ? 'Yes' : 'No' }} {{ $championship->status_text }} {{ $championship->updated_at->format('d M Y') }}
There are no championships yet.
{{ $championships->links() }}
@endsection