@extends('layouts.master') @push('css') @endpush @section('content')

Transaksi Pembelian

@csrf
@csrf
@php $no =1; @endphp @foreach ($keranjang as $item) @endforeach
No Kode obat Nama obat Jumlah Stok Harga Beli Subtotal #
{{$no++}} {{$item->obat->kode}} {{$item->obat->jenis}} {{$item->jumlah}} {{$item->obat->stok + $item->jumlah}} @currency($item->obat->harga_beli) @currency($item->jumlah * $item->obat->harga_beli)
Total @currency($keranjang->sum('subtotal'))
@endsection @push('js') @endpush