@extends('adminlte::page') @section('title', 'Products - MobileSentrix Admin') @section('content_header')

Products

Add New Product
@stop @section('content') @if(session('success'))
{{ session('success') }}
@endif

Filter Products

@forelse($products as $product) @empty @endforelse
Image SKU Name Category Price Stock Status Actions
@if($product->image) {{ $product->name }} @else No Image @endif {{ $product->sku }} {{ $product->name }} {{ $product->category->name }} ${{ number_format($product->price, 2) }} @if($product->isLowStock()) {{ $product->stock_quantity }} (Low) @elseif($product->stock_quantity == 0) Out of Stock @else {{ $product->stock_quantity }} @endif @if($product->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No products found
@stop @section('js') @stop