@extends('layouts.location') @section('title', 'Add Access Qty') @section('page-title', 'Add Access Qty') @section('content')
Add Access Quantity
@csrf
Back
Approve Access Quantity
@if(isset($pending) && $pending->count()) {{ $pending->count() }} @endif
@if(isset($pending) && $pending->count())
@foreach($pending as $row) @endforeach
Invoice Number Part No Description PCS Inward Qty Access Qty Action
{{ $row->invoice_number }} {{ $row->part_no }} {{ $row->description }} {{ (int)($row->pcs ?? 0) }} {{ (int)($row->inward_qty ?? 0) }} {{ (int)($row->access_qty ?? 0) }}
@else
No pending ASN rows found for your location.
@endif
@endsection @push('scripts') @endpush