@extends('front.layouts.app') @section('css') @endsection @section('content') {{__('front.posts-All')}} @foreach($cats as $cat) {{$cat->title}} @endforeach @foreach($posts as $item) {{$item->PostCat->title ?? ''}} {{$item->title}} {{$item->excerpt}} {{__('front.Read More')}} {{\Carbon\Carbon::parse($item->created_at)->format('d M Y')}} @endforeach @foreach($cats as $cat) @foreach($posts->where('post_cat_id', $cat->id) as $item) {{$item->PostCat->title ?? ''}} {{$item->title}} {{$item->excerpt}} {{__('front.Read More')}} {{\Carbon\Carbon::parse($item->created_at)->format('d M Y')}} @endforeach @endforeach @endsection @section('js') @endsection
{{$item->excerpt}}