@extends('layouts.app') @section('content')
| ID | Product | Status | Quantity | Approval | Next Arrival | Restock Date | Actions |
|---|---|---|---|---|---|---|---|
| {{ $stock->id }} |
{{ $stock->product->name }}
{{-- Model: {{ $stock->product->model ?? 'N/A' }} --}} |
@php $statusColors = [ 'in_stock' => 'success', 'out_of_stock' => 'danger', 'arriving' => 'warning' ]; @endphp {{ str_replace('_', ' ', ucfirst($stock->availability_status)) }} |
{{ $stock->quantity }}
@if($stock->quantity == 0)
Out of stock @endif |
@if($stock->requires_approval) @if($stock->is_approved) Approved @else Pending @endif @else No Approval Needed @endif | @if($stock->next_arrival_date) {{ date('M d, Y', strtotime($stock->next_arrival_date)) }} @else N/A @endif | @if($stock->expected_restock_date) {{ date('M d, Y', strtotime($stock->expected_restock_date)) }} @else N/A @endif | |
| No stock records found. | |||||||
In Stock
Out of Stock
Arriving
Pending Approval