@extends('frontend.layouts.app') @section('title') {{ __($module_title) }} @endsection @section('content') Blog home Blog @foreach($posts_data as $post) {{ $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 Search Categories @foreach($categories as $cat) {{ $cat->category_name }} @endforeach Tags @foreach($tags as $tag) {{ $tag->name }} @endforeach Recent Posts @foreach($recent_data as $recent) {{ $recent->name }} @endforeach Archive @foreach($archives as $archive) {{ $archive->month }} @endforeach @endsection
{{ Str::limit(strip_tags($post->content ?? $post->intro), 100) }}