@extends('layouts.master') @section('page-title'){{ __('Game Categories') }}@endsection @section('menu'){{ __('Games') }}@endsection @section('sub-menu'){{ __('Game Categories') }}@endsection @section('content')

@foreach ($gameCategories as $row) @endforeach
{{ __('Id') }} {{ __('Name') }} {{ __('Actions') }}
{{ $row->id }} {{ $row->name }} {{ __('Delete') }}
@endsection @section('script') @endsection