@extends('layouts.front.main') @section('title', __('frontWords.album_single')) @section('content')

Blog

{{$blog->title}}

{!!$blog->detail!!}

RECENT POSTS

    @foreach ($resentPosts as $post) @php $imagePath =''; // if 'images/blogs/'.$post->image file exists, then imagePath = 'images/blogs/'.$post->image if(file_exists('images/blogs/'.$post->image)){ $imagePath = asset('images/blogs/'.$post->image); }else{ $imagePath = dummyImage("custom",$post->title); } @endphp
  • {{$post->title}}

    {{date('M d,Y',strtotime($post->created_at))}}
  • @endforeach
@endsection @section('script') @endsection