@extends('layouts.admin')
@section('title')
Gestione categorie e gironi
@stop
@section('content')
| Nome |
Tipo |
Raggruppamento |
|
|
|
@foreach($categories as $category)
| {{$category->name}} |
{{$category->type == 'nation' ? 'Nazionale' : 'Regionale'}} |
{{$category->grp}} |
Gironi
|
|
|
@endforeach
@stop
@section('extra_js')
@stop