@extends('layout.app') @section('title') {{ __('Construction Materials') }} @endsection @section('content')

{{ __('Materials List') }}

@foreach($materials as $material) @endforeach
{{ __('Name') }} {{ __('Unit') }} {{ __('Current Price') }} {{ __('Last Updated') }} {{ __('Actions') }}
{{ $material->name }} {{ $material->unit }} {{ number_format($material->latest_price, 2) }} @if($material->prices->first()) {{ $material->prices->first()->date }} @else - @endif
@endsection