@extends('layouts.main') @section('title', $data['title']) @section('content')

All Products

{{-- Add Product --}} Add Product
entries
@forelse($products as $key => $product) @empty @endforelse
# Image Product Name Status Price Discount Final Price Action
{{ $key + 1 }} image {{ $product->product_name }} @if ($product->status != 0) Active @else Inactive @endif {{ number_format($product->product_amount, 2) }} {{ $product->discount_amount ?? '-' }} {{ number_format($product->final_amount, 2) }} {{-- --}}
No records found.

Showing {{ $products->firstItem() }} to {{ $products->lastItem() }} of {{ $products->total() }} entries

{{ $products->links('pagination::bootstrap-4') }}
@endsection('content') @section('custom-scripts') {{-- --}} @endsection('custom-scripts')