Файл: resources/views/game/deck/index.blade.php
Строк: 47
<?php
@extends('layouts.main')
@section('content')
<style>
.btn-games2 {
background: url(/images/btn-left2.jpg) no-repeat left ,url(/images/btn-right2.jpg) no-repeat right ,url(/images/btn-center2.jpg) repeat center;
color: #ede256;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 55px;
padding-right: 55px;
text-shadow: 0 -1px 0 #131227, 0 -1px 0 #131227, 0 1px 0 #131227, 0 1px 0 #131227, -1px 0 0 #131227, 1px 0 0 #131227, -1px 0 0 #131227, 1px 0 0 #131227, -1px -1px 0 #131227, 1px -1px 0 #131227, -1px 1px 0 #131227, 1px 1px 0 #131227, -1px -1px 0 #131227, 1px -1px 0 #131227, -1px 1px 0 #131227, 1px 1px 0 #131227;
font-size: 14px;
margin: 0;
margin-bottom: 0px;
border: 0;
}
</style>
<center>
<font color="white">
<big>Доступно прогресса карт: {{ Auth::user()->progress }}</big><br>
</font>
</center>
<div class="box">
<div class="menu">
@foreach($cards as $c)
<a href="/deck/card/{{ $c->id }}">
{{ $c->getCardInfo->name }}
<span style="float:right">
<font color="{{ Services::getCardRarity($c->getCardInfo->level)->color }}">{{ $c->getCardInfo->level }} ур.</font>
</span></a>
@endforeach
</div><br>
<a href="/deck/my" class="btn btn-games2 btn-block">Моя колода</a>
</div>
{{ $cards->links() }}
@endsection
?>