@extends('marsland::layouts.master') @section('title', _trans('About Us')) @section('marsland-content')
{{ $blog->title }}

{{ $blog->title }}

{!! $blog->content !!}
@if($blog->case_study)
{{$blog->case_study->title}}
@endif
{{ _trans('lanlord.Latest Blogs') }}
@foreach($latest_blogs as $latest_blog)
img

{{ $latest_blog->title }}

{{ date('d M', strtotime($latest_blog->created_at)) }}

@endforeach
{{ _trans('landlord.Tags') }}
@php $tags = explode(',', $blog->tags) @endphp @foreach($tags as $tag) {{ $tag }} @endforeach
@endsection