@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Back to Dashboard
{{ $currentRecord ? 'Edit Item Type' : 'Add New Item Type' }}
@csrf @if($currentRecord) @method('PUT') @endif
1
Item Details
2
Information
3
Units
4
Pricing
5
Warehouse
6
Images
Item Information
Code
*
Status
active ?? true)) ? 'checked' : '' }}>
Active
Description 1
*
Description 2
is_service_item ?? false)) ? 'checked' : '' }}>
Service Item
is_physical_item ?? true)) ? 'checked' : '' }}>
Physical Item
has_units_of_measure ?? true)) ? 'checked' : '' }}>
Units of Measure
has_warehouse ?? true)) ? 'checked' : '' }}>
Warehouse
Next
Product Information
Category
*
-- Select Category --
@foreach($categories as $cat)
category_id ?? '') == $cat->id ? 'selected' : '' }}> {{ $cat->name }}
@endforeach
@error('category') {{ $message }} @enderror
Bin Location
-- Select Bin Location --
@foreach($binLocations as $bin)
bin_location_id ?? '') == $bin->id ? 'selected' : '' }}> {{ $bin->code }} @if($bin->description) - {{ $bin->description }}@endif
@endforeach
@error('bin_location') {{ $message }} @enderror
Barcode
Scan
@error('barcode_box') {{ $message }} @enderror
Back
Next
Units of Measure
Stocking Unit
-- Select Stocking Unit --
@foreach($uoms as $uom)
stocking_unit_id ?? '') == $uom->id ? 'selected' : '' }}> {{ $uom->code }}@if($uom->description) – {{ $uom->description }}@endif
@endforeach
Default Purchases Unit
-- Select Purchase Unit --
@foreach($uoms as $uom)
default_purchase_unit_id ?? '') == $uom->id ? 'selected' : '' }}> {{ $uom->code }}@if($uom->description) – {{ $uom->description }}@endif
@endforeach
Default Sale Unit
-- Select Sale Unit --
@foreach($uoms as $uom)
default_sale_unit_id ?? '') == $uom->id ? 'selected' : '' }}> {{ $uom->code }}@if($uom->description) – {{ $uom->description }}@endif
@endforeach
Back
Next
Pricing Details
Average Cost
*
$
Last GRV Cost
$
Minimum GP %
%
VAT Rate %
%
Price List Markup:
Use
Price List Name
Markup %
Excl. Price
Incl. Price
@foreach($priceListNames as $list)
{{ $list->name }}
@endforeach
Back
Next
Warehouse Details
Warehouse
*
-- Select Warehouse --
@foreach($warehouses as $warehouse)
warehouse_id ?? '') == $warehouse->id ? 'selected' : '' }}> {{ $warehouse->description }}
@endforeach
Warehouse Description
Original Quantity
On Hand
—
Current Stock
—
Available
—
Back
Next
Product Images
Upload Images
Drag & drop your images here
or click to browse files
(Supports JPG, PNG up to 5MB each)
Selected Images
@if($currentRecord && $currentRecord->images) @foreach($currentRecord->images as $image)
×
@endforeach @endif
Back
Submit Item
Item Types
Code
Description 1
Description 2
Bin Location
Warehouse
Original Quantity
Category
Action
@foreach($records as $item)
{{ $item->code }}
{{ $item->description1 }}
{{ $item->description2 }}
{{ $item->binLocation->description ?? 'N/A' }}
{{ $item->warehouse->description ?? 'N/A' }}
{{ $item->original_quantity }}
{{ $item->category->name ?? 'N/A' }}
@endforeach
Confirm Deletion
Are you sure you want to delete this item type?
Ready to Leave?
×
Select "Logout" below if you are ready to end your current session.