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

    Please create a new game by clicking HERE

    @endif
    @stop