@extends('layouts.admin')
@section('title', 'Inventory')
@section('page-title', 'Mart Inventory')
@section('page-subtitle', 'Manage products and stock levels')
@section('content')
| Barcode |
Product Name |
Category |
Cost |
Sell Price |
Margin |
Stock |
Reorder |
Actions |
@forelse($products as $p)
| {{ $p->barcode ?? '-' }} |
{{ $p->name }} |
{{ $p->category }} |
₦{{ number_format($p->cost_price) }} |
₦{{ number_format($p->selling_price) }} |
₦{{ number_format($p->profit_margin) }} |
{{ $p->quantity }} {{ $p->unit }}
|
{{ $p->reorder_level }} |
|
@empty
| No products in inventory. |
@endforelse
{{ $products->links() }}
@endsection