@extends('layouts.app') @section('content')
Dashboard
Ihr momentaner Punktestand: {!! ($temp = $tipps->sum('score')) ? $temp : '-' !!}
Spiele
@foreach($matches as $match) @endforeach
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;']) !!}
@endsection