@extends('front.tendra.master') @section('body')
{{ __('Blog') }}
{{ __('Explore our latest articles for more ideas and inspiration, technology, design, tutorials, business and much more') }}
@foreach($posts as $post)
cover}") }}" class="rounded-[.5rem]"> @isset($post->category_slug) {{ $post->category_name }} @endisset
{{ $post->created_at->format('Y-m-d') }}
@foreach($post->tags as $tag) {{ $tag }} @endforeach
{{ limit($post->name, 100) }}
{{ $post->views }}
{{ __('Read more') }}
@endforeach
@if($posts->hasPages())
{{ $posts->links('vendor.pagination.tailwind') }}
@endif
@endsection