@extends('layouts.app') @section('title', 'Items') @section('page-title') Items @endsection @section('content')
| Images | Name | Type | Unit | Current Stock | Sales Price | Purchase Price | Margin | Action |
|---|---|---|---|---|---|---|---|---|
|
@if($item->image)
|
{{ $item->name }}
|
{{ ucfirst($item->type) }} | {{ $item->unit ?: '-' }} |
@if($item->type == 'goods')
{{ number_format($item->current_stock, 2) }} {{ $item->unit }}
@if($item->current_stock <= 5)
LOW STOCK
@endif
@else
N/A (Service)
@endif
|
@if($item->enable_sales) {{ formatCurrency($item->sales_price) }} @else Disabled @endif | @if($item->enable_purchase) {{ formatCurrency($item->purchase_price) }} @else Disabled @endif |
@if($item->enable_sales && $item->enable_purchase)
{{ formatCurrency($item->margin) }}
{{ number_format($item->margin_percentage, 1) }}%
@else
N/A
@endif
|
|
| No items found. Create your first item | ||||||||