@extends('layouts.app') @section('link') @endsection @section('content') @include('shared.messages')

Списък с турнири


@foreach($tournaments as $tournament) @endforeach
Име Спортна площадка Спорт Период
{{$tournament->name}} {{$tournament->playground->name}} {{__('texte.sports_arr')[$tournament->sport_id]}} {{date('d.m.yy',strtotime($tournament->date_from))}} - {{date('d.m.yy',strtotime($tournament->date_to))}} @if(count($tournament->matches)>0) @else @endif
@endsection