@extends('layouts.app') @section('head') Blog | {{env('APP_NAME')}} @endsection @section('content')
@foreach ($posts as $post)
{{ $post->content->name }}
{{ $post->content->name }}

{{ str_limit(strip_tags($post->content->description), 150) }}

{{ date_format(date_create($post->created_at), 'Y/m/d') }}

@endforeach
@endsection