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.
14 lines
290 B
PHTML
14 lines
290 B
PHTML
4 months ago
|
@extends('website.inc.website-layout')
|
||
|
|
||
|
@section('title')
|
||
|
welcome
|
||
|
@endsection
|
||
|
@section('content')
|
||
4 months ago
|
<main>
|
||
4 months ago
|
@foreach(getParts($area) as $part)
|
||
4 months ago
|
@php($p = $part->getBladeWithData())
|
||
|
@include($p['blade'],['data' => $p['data']])
|
||
4 months ago
|
@endforeach
|
||
4 months ago
|
</main>
|
||
4 months ago
|
@endsection
|