зеркало из https://github.com/4xmen/xshop.git
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
19 строки
391 B
PHTML
19 строки
391 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>
|
|
@foreach(getParts($area) as $part)
|
|
@php($p = $part->getBladeWithData())
|
|
@include($p['blade'],['data' => $p['data']])
|
|
@endforeach
|
|
</main>
|
|
@endsection
|