23 lines
605 B
PHP
23 lines
605 B
PHP
@extends('Shop.layout.layout', [
|
|
'title' => __('home.title'),
|
|
])
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-3 col-lg-2">
|
|
@include('Shop.layout.partials.category_filters')
|
|
</div>
|
|
<div class="col-9 col-lg-10">
|
|
<div class="row">
|
|
<div class="col-8">
|
|
<h1 style="font-size: 2em;">{{ $category['name'] }}</h1>
|
|
<h3 style="font-size: 1.2em;">{!! $category['description'] !!}</h3>
|
|
</div>
|
|
<div class="col-4">
|
|
@include('Shop.layout.partials.category_add')
|
|
</div>
|
|
</div>
|
|
@include('Shop.layout.partials.category_articles')
|
|
</div>
|
|
</div>
|
|
@endsection |