@extends('layouts.app') @section('title','Our Blog') @section('meta') @endsection @section('header') @include('front.partials.header') @endsection @section('content')

Latest blogs

@foreach ($blogPosts as $post)
{{$post->alt_tag}}

{!!$post->title!!}

Posted by {{$post->user->name}} on {{ \Carbon\Carbon::parse($post->created_at)->isoFormat(' Do MMMM YYYY')}}
{{--
5 min read
--}}
Open Link
@endforeach
@include('front.partials.free_trial_black_bar') @endsection @section('footer') @include('front.partials.footer')
@endsection