@extends('frontend.layouts.app') @section('metatags') @endsection @section('title', 'Events & News') @section('content') @section('content')

News

@if (count($posts) != 0)
@foreach ($posts as $post)
@foreach($post->categories as $category) {{ $category->name }} @endforeach

{{ $post->title }}

{{ $post->created_at->toFormattedDateString() }}
@endforeach
@endif
@include('frontend/pages/blog/list-categories')
@endsection @section('scripts') @endsection