@extends('superadmin.layouts.main') @extends('superadmin.layouts.top_bar') @section('page_title', 'Inventory') @section('header_styles') @endsection @section('header_scripts') @endsection @section('content')

Inventory

Products

@forelse($products as $product) @empty @endforelse
# Name Price Image Warranty (Monthly) Warranty Period Quantity Sold Quantity Actions
{{ $loop->iteration }} {{ $product->name }} {{ $product->price }} {{ $product->name }} {{ $product->warranty_is_monthly ? 'Yes' : 'No' }} {{ $product->warrenty }} {{ $product->qty }} {{ $product->sold_qty }}
@endsection @section('footer_modals') @endsection @section('footer_scripts') @endsection