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

{{ __('Purchase Details') }}

@foreach ($purchase->details as $item) @endforeach
No. Photo Product Name Product Code Current Stock Quantity Price Total
{{ $loop->iteration }}
{{ $item->product->name }} {{ $item->product->code }} {{ $item->product->quantity }} {{ $item->quantity }} {{ number_format($item->unitcost, 2) }} {{ number_format($item->total, 2) }}
Total {{ number_format($purchase->total_amount, 2) }}
@endsection