@extends('layouts.app') @section('title','Buat Pembelian') @section('page-title','Buat Pembelian') @push('head') @endpush @section('content')
@csrf
@error('supplier_id')

{{ $message }}

@enderror
{{-- Items --}}
@error('items')

{{ $message }}

@enderror
Produk Qty Harga Beli Subtotal
Rp 0
SubtotalRp 0
TotalRp 0
Batal
@php $suppliersData = $suppliers->map(fn($s) => ['id' => $s->id, 'name' => $s->name, 'phone' => $s->phone ?? '']); $productsData = $products->map(fn($p) => ['id' => $p->id, 'name' => $p->name, 'code' => $p->code ?? '', 'price' => (float) $p->cost_price]); @endphp @push('scripts') @endpush @endsection