@extends('admin.layouts.master') @section('content')

Add Purchase Info

@csrf

Purchase Items

@if(session()->has('purchase_items')) @foreach(session('purchase_items') as $index => $item) @endforeach @else @endif
Ingredient Unit Quantity Cost Price Total Price Action
{{ $item['name'] }} {{ $item['unit'] }} {{ $item['quantity'] }} {{ $item['cost_price'] }} {{ $item['total_price'] }}
@csrf
No items added yet.

Purchase Information

@csrf
@endsection