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