@extends('layouts.app') @section('content')

{{__("Prices")}}

@foreach($prices as $rbr => $price) @endforeach
{{__("No.")}} {{__("Price")}} {{__('Created at')}}
{{($rbr+1).'.'}} {{$price->price}} {{date('d.m.Y H:i:s', strtotime($price->created_at))}}
@endsection