@extends('frontend.layouts.master') @section('title') {{ __('header.news_title') }} @endsection @section('main-content')
@foreach($posts as $post)
@php $tags=explode(',',$post->tags); @endphp @foreach($tags as $tag) {{$tag}} @endforeach

{{$post->title}}

{{$post->created_at->format('d M , Y. D')}}
@endforeach
@endsection