@extends('layouts.app', ['page' => __('Reporte Cambio de precios'), 'pageSlug' => 'typologies', 'section' => 'menu']) @section('content') @component('components.searchBar', ['fields' => $fields , 'action' => route('typologies.priceUpdateHistory', ['houseDevelopment' => $houseDevelopmentId]), 'search' => $search]) @endcomponent

{{ __('Historial de apartados') }}

@foreach ($priceUpdates as $priceUpdate) @endforeach
{{ __('Nombre') }} {{ __('Correo') }} {{ __('Nombre TipologĂ­a / Unidad') }} {{ __('Precio anterior') }} {{ __('Precio nuevo') }} {{ __('Fecha') }}
{{ $priceUpdate->name }} {{ $priceUpdate->email }} @if ($priceUpdate->priceUpdateable) {{ $priceUpdate->priceUpdateable->name }} @else N/A @endif {{ $priceUpdate->old_price }} {{ $priceUpdate->new_price }} {{ $priceUpdate->date }}
@endsection