@extends('layouts.app') @section('content')
@include('inventory.partials.withdraw-tabs')
@forelse ($inventory as $item) @empty @endforelse
Inventory ID Photo Item Withdrawn Category Weight Est. Value (MYR) Status Withdrawn By Process Date Action
{{ $item->inv_id }}
@if ($item->image_url) {{ $item->inv_id }} @else - @endif
{{ $item->type }}
{{ $item->gold_type }} {{ $item->weight }}g
{{ $item->category }}
{{ $item->weight }} g
{{ $item->price ? number_format($item->price, 2) : '-' }}
@switch((int) $item->process_status) @case(200) Pending Approval (HQ) @break @case(201) HQ Approved @break @case(202) Delivering to Branch @break @case(203) Branch Received @break @case(204) Pending Pickup @break @case(205) Picked Up @break @default {{ $item->withdraw_process ?? 'Status ' . $item->process_status }} @endswitch
{{ $item->withdraw_by }}
{{ $item->process_date }}
Admin Empty

No withdrawal requests found.

@include('inventory.partials.withdraw-detail-modal') @endsection @section('styles') @endsection @section('scripts') @endsection