You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.6 KiB

@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-12">
<table class="table table-bordered">
<thead>
<tr>
<th>Team</th>
@foreach($missions as $mission)
<th>
<h3>{{ $mission->id }}</h3>
{{ $mission->hashtag }}
</th>
@endforeach
<th>Score</th>
</tr>
</thead>
<tbody>
@foreach($teams as $team)
<tr>
<td>
<div class="team">
<span class="team-icon" style="background-color: #{{ $team->color }};"></span>
<span class="team-name">{{ $team->name }}</span>
</div>
<div class="players">
@foreach($team->players as $player)
<a href="https://twitter.com/{{ $player->twitter }}">{{ '@'.$player->twitter }}</a>
@endforeach
</div>
</td>
@foreach($missions as $mission)
<td>
<div>{{ $mission->score($team) }}</div>
<div>{{ $mission->complete($team) ? 'Complete' : '' }}</div>
<div>{{ $mission->progress($team)[0].'/'.$mission->progress($team)[1] }}</div>
</td>
@endforeach
<td>
<b>{{ $team->total_score() }}</b>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection