@aware(['page']) @props(['posts','section_name','section_description'])

{{$section_name}}

{!! tiptap_converter()->asHTML($section_description) !!}

@foreach ($posts as $p) @php $post= App\Models\Post::where('id',$p['post_id'])->first(); @endphp
content {{ $post?->category?->name }}

{{$post->name}}

{!! tiptap_converter()->asHTML(\Illuminate\Support\Str::limit($post?->sub_description, 60)) !!}

Learn More
@endforeach