kopia lustrzana https://github.com/4xmen/xshop.git
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
31 wiersze
973 B
PHTML
31 wiersze
973 B
PHTML
@extends('website.inc.website-layout')
|
|
|
|
@section('title')
|
|
{{$title}} - {{config('app.name')}}
|
|
@endsection
|
|
@php
|
|
if ($category->bg != null){
|
|
$bg = $category->bgUrl();
|
|
}
|
|
@endphp
|
|
@section('content')
|
|
<main>
|
|
@if(\App\Models\Area::where('name',$area)->first()->use_default)
|
|
@foreach(getParts('defaultHeader') as $part)
|
|
@php($p = $part->getBladeWithData())
|
|
@include($p['blade'],['data' => $p['data']])
|
|
@endforeach
|
|
@endif
|
|
@foreach(getParts($area) as $part)
|
|
@php($p = $part->getBladeWithData())
|
|
@include($p['blade'],['data' => $p['data']])
|
|
@endforeach
|
|
@if(\App\Models\Area::where('name',$area)->first()->use_default)
|
|
@foreach(getParts('defaultFooter') as $part)
|
|
@php($p = $part->getBladeWithData())
|
|
@include($p['blade'],['data' => $p['data']])
|
|
@endforeach
|
|
@endif
|
|
</main>
|
|
@endsection
|