@extends('admin.layout') @section('title', 'Quản lý Game') @section('heading', 'Quản lý Game') @section('content')

Danh sách game ({{ $games->count() }})

@forelse($games as $g) @empty @endforelse
#ẢnhTên gameTiền ảoMệnh giáHOTHiển thịThao tác
{{ $g->id }} @if($g->image)@endif {{ $g->name }}
{{ $g->slug }}
{{ $g->currency_label }} {{ $g->packages_count }} gói {!! $g->hot ? 'HOT' : '' !!} {!! $g->active ? 'Bật' : 'Tắt' !!} Mệnh giá
@csrf @method('DELETE')
Chưa có game nào.
{{-- Modal thêm game --}}
@csrf @include('admin.partials.game-fields', ['g' => null])
{{-- Modal sửa game --}}
@csrf @method('PUT') @include('admin.partials.game-fields', ['g' => null, 'edit' => true])
@endsection @push('scripts') @endpush