@extends('front.layouts.master') @section('seo_title', $post_category->seo_title) @section('seo_meta_description', $post_category->seo_meta_description) @section('content')

{{ __('Category:') }} {{ $post_category->name }}

@forelse ($posts as $item)
{{ $item->created_at->format('d M, Y') }}

{{ $item->title }}

{{ __('Read More') }}
@empty
{{ __('No Post Found') }}
@endforelse
{{ $posts->links() }}
@endsection