10 lines
160 B
PHP
10 lines
160 B
PHP
@extends('_layouts.main')
|
|
|
|
@section('body')
|
|
@if ($page->design == '98')
|
|
@include('_partials/98')
|
|
@else
|
|
@include('_partials/default')
|
|
@endif
|
|
@endsection
|