mirror da https://github.com/4xmen/xshop.git
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
26 righe
873 B
PHTML
26 righe
873 B
PHTML
@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($product))
|
|
@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
|