@extends('admin::layouts.layout') @section('content')
{!! \App\Http\Helper::text_button(trans('common.Új Hozzáadás'),array('route_name' => 'admin_game_edit', 'params' => array()),'fa-plus', array('class'=>'btn btn-primary')) !!}
{!! $filterHeader !!}
{!! \App\Http\Helper::formOpen('GameForm','post',NULL,['class'=>'form ']) !!}
@foreach($model as $m) @endforeach
{{trans('common.ID')}} {{trans('common.Name')}} {{trans('common.Max number of tickets/slot')}} {{trans('common.Price / ticket')}} {{trans('common.Group discount (%)')}} {{trans('common.Video embed link')}} {{trans('common.Difficulty of the game')}} {{trans('common.menu')}}
{{$m->id}} {{$m->name}} {{$m->max_ticket}} {{$m->price}} {{$m->group_discount}} {{$m->video_url}} {{$m->difficulty}}
{!! \App\Http\Helper::formClose() !!}
{!! $model->links() !!}
@endsection