@extends('frontend.layouts.master') @section('title') Blog @endsection @section('main-content') @include('frontend.layouts.notification')

Blog

@if($posts) @foreach($posts as $post)
@php $photo=explode(',',$post->photo); @endphp {{ Storage::url($post->photo) }}
{{$post->created_at->format('d M , Y. D')}}

{{$post->title}}

Read more +
@endforeach @endif
@endsection