@extends('layouts.master') @section('content') @section('page_title') Blog @endsection @section('current_path') Blog @endsection @include('pages.partials.header')
@foreach ($posts as $post)

{{ $post->title }}

{{ \Str::substr($post->excerpt, 0, 120) }}...

  • Lire plus
  • {{ \date('d-m-Y', strtotime($post->date)) }}
@endforeach
@endsection @section('specific_scripts') @endsection