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