@extends('shop.layouts.main') @extends('shop.layouts.top_bar') @section('page_title', 'Inventory') @section('header_styles') @endsection @section('header_scripts') @endsection @section('content')
| # | Name | Price | Image | Warranty Period | Warranty Unit | Quantity | Sold Quantity | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $product->name }} | {{ $product->price }} |
|
{{ $product->warranty_duration === null || $product->warranty_duration <= 0 ? 'N/A' : $product->warranty_duration }} | @if($product->warranty_duration === null || $product->warranty_duration <= 0) N/A @else @if($product->warranty_unit === 0) Day @elseif($product->warranty_unit === 1) Month @elseif($product->warranty_unit === 2) Year @else N/A @endif @endif | {{ $product->qty }} | {{ $product->sold_qty }} |
|