@extends('layouts.authUser') @section('content')

Pesanan inventori

@csrf

Nama:

{{ $user->name }}


E-mel:

{{ $user->email }}


No. telefon:

{{ $user->phone_num }}


No. bilik penyediaan:

{{ $item->itemLocation->storageRoomNo }}


Alat radas:

@if($item->item_measurement === null) {{ $item->item_name }} @else {{ $item->item_name }} [{{ $item->item_measurement }}{{ $item->item_measurement_unit }}] @endif


No. siri:

{{ $item->item_series_num }}


Kategori:

{{ $item->itemCategory->itemCategory_name }}


Tarikh luput:

@if($item->expired_date === null) TIADA @else {{$item->expired_date->format('d-m-Y') }} @endif


Harga seunit:

RM {{ $item->item_price }}


Kuantiti terima:

{{ $item->item_quantity }}


Kuantiti baki:

{{ $item->item_currentQuantity }}


@error('name') {{ $message }} @enderror

@error('quantityNeeded') {{ $message }} @enderror
{{ __('Batal') }}
@endsection