mirror of https://github.com/4xmen/xshop.git
14 lines
318 B
PHTML
14 lines
318 B
PHTML
6 months ago
|
@extends('website.inc.website-layout')
|
||
|
|
||
|
@section('title')
|
||
|
{{$title}} - {{config('app.name')}}
|
||
|
@endsection
|
||
|
@section('content')
|
||
|
<main>
|
||
|
@foreach(getParts($area) as $part)
|
||
|
@php($p = $part->getBladeWithData())
|
||
|
@include($p['blade'],['data' => $p['data']])
|
||
|
@endforeach
|
||
|
</main>
|
||
|
@endsection
|