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.
|
|
|
@extends('website.inc.website-layout')
|
|
|
|
|
|
|
|
@section('title')
|
|
|
|
{{$title}} - {{config('app.name')}}
|
|
|
|
@endsection
|
|
|
|
@php
|
|
|
|
if ($category->bg != null){
|
|
|
|
$bg = $category->bgUrl();
|
|
|
|
}
|
|
|
|
@endphp
|
|
|
|
@section('content')
|
|
|
|
<main>
|
|
|
|
@if(\App\Models\Area::where('name',$area)->first()->use_default)
|
|
|
|
@foreach(getParts('default_header') as $part)
|
|
|
|
@php($p = $part->getBladeWithData())
|
|
|
|
@include($p['blade'],['data' => $p['data']])
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
@foreach(getParts($area) as $part)
|
|
|
|
@php($p = $part->getBladeWithData())
|
|
|
|
@include($p['blade'],['data' => $p['data']])
|
|
|
|
@endforeach
|
|
|
|
@if(\App\Models\Area::where('name',$area)->first()->use_default)
|
|
|
|
@foreach(getParts('default_footer') as $part)
|
|
|
|
@php($p = $part->getBladeWithData())
|
|
|
|
@include($p['blade'],['data' => $p['data']])
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
</main>
|
|
|
|
@endsection
|