Blame view

resources/views/previews/index.blade.php 1.35 KB
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  @extends('layouts.default')
  
  @section('title', FootyRoom\Support\Utils\Helpers::title('Match Previews'))
  
  @section('content')
  	<div class="site-tree">
  		<a href="/">Home</a>
  		<div class="separator"></div>
  		<a href="/previews">Previews</a>
  		<div class="separator"></div>
  	</div>
  
  	<div id="mainBox">
  		<div id="previews">
  			<div class="header">
  				<h1>Match Previews</h1>
  			</div>
  			
  			<div class="clearfix">
  				@forelse ($previews as $preview)
  					<div class="col-sm-4 col-xs-12">
  						<div class="match-box">
  							<a href="{!! route('matchPreview', [
  								'id' => $preview->matchId,
  								'slug' => \FootyRoom\Http\Match\MatchSlug::fromTeams($preview->homeTeamName, $preview->awayTeamName)
  							]) !!}">
  								<div class="top-part clearfix">
  									<div class="team-badge"><img src="{!! $teamBadgeUrl($preview->homeTeamId) !!}" /></div>
  									<div class="vs">vs</div>
  									<div class="team-badge"><img src="{!! $teamBadgeUrl($preview->awayTeamId) !!}" /></div>
  								</div>
  								<div class="bottom-part clearfix">
  									<div class="team-name">{{ $preview->homeTeamName }}<span class="spacer">-</span>{{ $preview->awayTeamName }}</div>
  								</div>
  							</a>
  						</div>
  					</div>
  				@empty
  					<div class="info-box last-page">No previews at the moment. Check back later.</div>
  				@endforelse
  			</div>
  		</div>
  	</div>
  @endsection