@extends('layouts.app') @section('meta_title', $article->meta_title ?? $article->title . ' | Property Sourcing Group') @section('meta_description', $article->meta_description ?? Str::limit(strip_tags($article->excerpt ?? $article->content), 160)) @section('meta_keywords', $article->meta_keywords ?? 'property sourcing, blog, investment, ' . $article->title) @section('content')

{{ $article->title }}

{{ $article->author_name ?? 'The Property Sourcing Group' }}

{{ \Carbon\Carbon::parse($article->published_at ?? $article->created_at)->format('d F Y') }}

@if($article->image_url)
{{ $article->title }}
@endif
{!! $article->content !!}
Share this:
Back to All News
Recent Updates
@foreach($recent as $post)
{{ Str::limit($post->title, 45) }}
{{ \Carbon\Carbon::parse($post->published_at ?? $post->created_at)->format('M d, Y') }}
@endforeach

Unlock Exclusive Deals

Join our VIP list for free access

Your data is secure with us.
@endsection