@extends('layouts.admin') @section('title', 'Games') @section('content')

Games

@foreach($games as $game) @endforeach @if($games->isEmpty()) @endif
ID Icon Name Slug Products Status Actions
{{ $game->id }} @if($game->icon) {{ $game->name }} @else
No icon
@endif
{{ $game->name }} {{ $game->slug }} {{ $game->products_count }} {{ $game->status }}
@csrf @method('DELETE')
No games found. Click "Add Game" to create one.
{{ $games->links() }}
@endsection