@extends('layouts.master')
@section('styles')
@endsection
@section('content')
@php
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('admin.dashboard')],
['label' => 'Leaderboard', 'url' => '#', 'active' => true],
];
@endphp
@foreach($cards as $card)
@endforeach
Create New Leaderboard
@php
$columns = [
['label' => 'ID'],
['label' => 'Title'],
['label' => 'Prize Pool'],
['label' => 'Type'],
['label' => 'Start AT'],
['label' => 'End AT'],
['label' => 'Total User Win'],
['label' => 'Total Coin Paid'],
['label' => 'Status'],
['label' => 'Action'],
];
@endphp
@endsection
@section('scripts')
@include('layouts.components.common-script')
@vite('resources/assets/js/modal.js')
@endsection