@extends('layouts.front.login-site')
@section('content')
{{-- Page Banner Begins --}}
{{-- Page Banner Ends --}}
{{-- All Blog Cards Begins --}}
@foreach ($blogs as $item)
{{ \Carbon\Carbon::parse($item->created_at)->format('F-d-Y') }}
{!! $item->title !!}
Read More
@endforeach
{{-- End of all Blog Cards --}}
@include('front.users.newsletter.page')
@endsection