Вход Регистрация
Файл: resources/views/pages/stickers_category.blade.php
Строк: 19
<?php
@extends('layout')

@
section('title'$category->name)

@
section('breadcrumb')
    <
nav>
        <
ol class="breadcrumb">
            <
li class="breadcrumb-item"><a href="/"><class="fas fa-home"></i></a></li>
            <
li class="breadcrumb-item"><a href="/stickers">{{ __('index.stickers') }}</a></li>
            <
li class="breadcrumb-item active">{{ $category->name }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    <
div class="container section mb-3 shadow">
        @if (
$stickers->isNotEmpty())
            <
div class="row">
                @foreach (
$stickers as $sticker)
                    <
div class="col-md-3 col-sm-6">
                        <
img src="{{ $sticker->name }}" alt="{{ $sticker->code }}" class="img-fluid"><br>
                        <
b>{{ $sticker->code }}</b>
                    </
div>
                @endforeach
            </
div>

            {{ 
$stickers->links() }}

            <
div class="mb-3">
                {{ 
__('stickers.total_stickers') }}: <b>{{ $stickers->total() }}</b>
            </
div>
        @else
            {{ 
showError(__('stickers.empty_stickers')) }}
        @endif
    </
div>
@
stop
?>
Онлайн: 1
Реклама