@extends('layouts.app') @section('content')
Datum | Team A | Team B | Ergebnis | Tipp | Score | Tippen |
---|---|---|---|---|---|---|
{!! date('d.m.y H:i', strtotime($match->date)) !!} | {!! $teams->find($match->teama)->name !!} | {!! $teams->find($match->teamb)->name !!} | {!! $match->resulta . ':' . $match->resultb !!} | {!! $tipps->where('matchid', $match->id)->pluck('resulta')->first() . ':' . $tipps->where('matchid', $match->id)->pluck('resultb')->first() !!} | {!! $tipps->where('matchid', $match->id)->pluck('score')->first() !!} | @if($tipps->where('matchid', $match->id)->pluck('resulta')->first() == null) {!! Form::model($match, ['method' => 'GET', 'action' => ['PagesController@createTipp', $match->id], 'style' => 'display:inline-block;']) !!} |