@foreach($posts as $post)
{{-- //created at--}}
{{ $post->published_at ? $post->published_at->format('F d, Y') : $post->created_at->format('F d, Y') }}
{{ $post->name }} @if($post->short_description && $post->short_description != '' && $post->short_description != 'null') {!! $post->short_description !!} @endif
@if($post->post_type == \Modules\MastulPost\Enums\PostType::MASTUL_NEWS->value) {{ __('messages.SeeDetails') }} @else {{-- {{ __('messages.SeeDetails') }} --}} {{ __('messages.SeeDetails') }} @endif
@endforeach
@if($paginated)
{{ $posts->links() }}
@endif