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

Purchase List

Add Purchase
@foreach($purchases as $purchase) @endforeach
ID Product Quantity Price Total Action
{{ $purchase->id }} {{ $purchase->product->name }} {{ $purchase->quantity }} {{ $purchase->product->unitLabel() }} {{ $purchase->price }} {{ $purchase->quantity * $purchase->price }} Edit
@csrf @method('DELETE')
@endsection