@extends('layouts.main') @section('title', 'Price Change History') @section('css') @endsection @section('nav') @include('layouts.nav') @endsection @section('content')
@foreach( $priceLogs as $log ) @endforeach
Date Room ID Changed Price
{{ $log->created_at->format('Y-m-d') }} {{ $log->params->room_id }} {{ $log->params->price }} $
@endsection @section('scripts') @endsection