@extends('front.master') @section('title', 'blog') @section('content')

{{ __('messages.blogs') }}

{{--
@include('front.pages.blogs-list', ['blogs' => $blogs])
--}}
@if (count($blogs) > 0) @foreach ($blogs as $blog)
  • {{ $blog->created_at ? $blog->created_at->format('d/m/Y') : '' }}

{{ $blog->title}}

{{ __('messages.read_more')}}
@endforeach @endif
@endsection @push('custom-scripts') @endpush