@extends('admin.layouts.layout') @section('content')
@include('admin.layouts.navbar')
@include('admin.layouts.sidebar')

قائمة الرياضات

إضافة رياضة جديدة
@foreach ($games as $game) @endforeach
الاسم الوصف السعر عدد الألعاب الفرعية إجراءات
{{ $game->name }} {{ $game->description }} {{ number_format($game->price, 2) }} {{ $game->subGames->count() }} عرض تعديل
@csrf @method('DELETE')
{{ $games->links() }}
@endsection