Part Finder
| Actions |
Product Number |
Name |
Info |
Extra |
@foreach ($parts as $part)
|
@if (!empty($part->ProductNumber))
@endif
|
{!! $part->ProductNumber !!} |
{!! $part->InfoPart1 !!} |
{!! $part->InfoPart2 !!} |
{!! $part->Service_Info !!} |
@endforeach
{{ $parts->appends(request()->except('partsPage'))->links() }}
Current Inventory
Item added to inventory
| Actions |
Product Number |
Name |
Info |
Quantity |
@if($inventoryItems && $inventoryItems->count() > 0)
@foreach ($inventoryItems as $item)
|
|
{{ optional($item->product)->ProductNumber ?? 'N/A' }} |
{{ optional($item->product)->InfoPart1 ?? 'N/A' }} |
{{ optional($item->product)->InfoPart2 ?? 'N/A' }} |
{{ $item->quantity }} |
@endforeach
@else
| No items in inventory. |
@endif
@if($inventoryItems && $inventoryItems->count())
{{ $inventoryItems->appends(request()->except('inventoryPage'))->links() }}
@else
No inventory items found.
@endif