mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
865 B
PHTML
26 lines
865 B
PHTML
2 months ago
|
@extends('website.inc.website-layout')
|
||
|
|
||
|
@section('title')
|
||
|
{{$title}} - {{config('app.name')}}
|
||
|
@endsection
|
||
|
@section('content')
|
||
|
<main>
|
||
|
@if(findArea($area,$product)->use_default)
|
||
|
@foreach(getParts('defaultHeader') as $part)
|
||
|
@php($p = $part->getBladeWithData())
|
||
|
@include($p['blade'],['data' => $p['data']])
|
||
|
@endforeach
|
||
|
@endif
|
||
|
@foreach(getParts($area,$product) as $part)
|
||
|
@php($p = $part->getBladeWithData())
|
||
|
@include($p['blade'],['data' => $p['data']])
|
||
|
@endforeach
|
||
|
@if(findArea($area,$product)->use_default)
|
||
|
@foreach(getParts('defaultFooter') as $part)
|
||
|
@php($p = $part->getBladeWithData())
|
||
|
@include($p['blade'],['data' => $p['data']])
|
||
|
@endforeach
|
||
|
@endif
|
||
|
</main>
|
||
|
@endsection
|