@extends('frontend.layouts.app') @section('title') {{$$module_name_singular->name}} @endsection @section('content')

{{$$module_name_singular->name}}

{{$$module_name_singular->description}}

@include('frontend.includes.messages')
@foreach ($posts as $post) @php $details_url = route("frontend.posts.show",[encode_id($post->id), $post->slug]); @endphp
{{$post->name}}
{!!isset($post->created_by_alias)? $post->created_by_alias : '
'.$post->created_by_name.'
'!!}

{{$post->intro}}

@endforeach
{{$posts->links()}}
@endsection