@extends('layouts.admin-main') @section('content')
@foreach ($productPrices as $index => $productPrice) @endforeach
# {{ __('message.price') }} {{ __('message.date time') }} {{ __('message.created by') }} {{ __('message.created date') }} {{ __('message.action') }}
{{ $index + 1 }} {{ number_format($productPrice->price, 6) }} {{Carbon\Carbon::parse($productPrice->datetime)->format('d/m/Y H:i:s')}} {{ $productPrice->user->name ?? '' }} {{$productPrice->created_at->format('d/m/Y H:i')}}
{{ csrf_field() }}
{{ $productPrices->appends($_GET)->links() }}
@endsection @section('scripts') @endsection @section('meta') {{ __('message.product') }} - {{ config('app.name', 'Dashboard') }} @endsection