@extends('layouts.app') @section('content')
Banner

@lang('strings.latest')

@foreach($properties as $property)
{{-- Display the cover image --}} @if($property->cover_image) {{ app()->getLocale() == 'en' ? $property->title_en : $property->title_jp }} @else {{ app()->getLocale() == 'en' ? $property->title_en : $property->title_jp }} @endif
{{ app()->getLocale() == 'en' ? $property->title_en : $property->title_jp }}

{{ Str::limit(app()->getLocale() == 'en' ? $property->description_en : $property->description_jp, 150) }}

@lang('strings.location') : {{ app()->getLocale() == 'en' ? $property->location->name_en : $property->location->name_jp }}

@lang('strings.more')
@endforeach
@endsection