@extends('frontend.layouts.app') @section('title') {{ __($module_title) }} @endsection @section('content')
@foreach($posts_data as $post)
{{ $post->name }}
{{ $post->name }}
{{ $post->created_at->format('d M, Y') }} | {{ $post->category->name ?? $post->category_name }}

{{ Str::limit(strip_tags($post->content ?? $post->intro), 100) }}

Read more
@endforeach
{{ $posts_data->links('pagination::bootstrap-5') }}
Search
Categories
Tags
@foreach($tags as $tag) {{ $tag->name }} @endforeach
Recent Posts
@foreach($recent_data as $recent) @endforeach
Archive
    @foreach($archives as $archive)
  • {{ $archive->month }}
  • @endforeach
@endsection