@extends('frontend.layouts.master', ['page' => $page]) @section('content') @if($layout_cat)
@php $path = 'views/livewire/frontend/layouts/detail'; $file_name = get_details_page_design($content->id); @endphp

{{$file_name}}

@if(has_view_file($file_name.'.blade.php',$path)) @livewire('frontend.layouts.detail.'.$file_name,['record_id'=>$content->id]) @else

{{ $content->heading }}

{{ $content->sub_heading }}

{{ $content->heading }}

{!! $content->details !!}
@endif
@else

{{ $content->heading }}

{{ $content->sub_heading }}

{{ $content->heading }}

{!! $content->details !!}
@endif @endsection