@extends('layouts.admin') @section('header','games') @section('breadcrumbs')
  • Home
  • games in vue
  • @stop @section('content')
    @include('messages')
    @if(count($games))
    @foreach ($games as $game) @endforeach
    Game name index Updated At
    {{ $game->name }} {{ date('d-m-Y H:i:s',strtotime($game->updated_at)) }}
    @else

    Please create a new game by clicking HERE

    @endif
    @stop