@extends('layouts.app', ['page' => __('Mis inversiones'), 'pageSlug' => 'myinvestments', 'section' => 'menu']) @section('content')

{{ __('Mis Inversiones') }}

@foreach($customerWithUnits->customerUnits as $customerUnit)
@if($customerUnit->unit->images->first()) Imagen Departamento @else
No image available
@endif
{{ __('Desarrollo:') }} {{ $customerUnit->houseDevelopment->name }}
{{ __('Ubicación:') }} {{ $customerUnit->houseDevelopment->address }}
{{ __('Departamento:') }} {{ $customerUnit->unit->name }}
{{ __('Fecha de adquisición:') }} {{ $customerUnit->created_at->translatedFormat('l, d F Y') }}
@endforeach
@endsection