@extends('layouts.app') @section('title', 'Ecommerce Products') @section('custom-css') @endsection @section('content')
| # | {{ __('pages.Name') }} | {{ __('pages.Quantity') }} | {{ __('pages.Sale Price') }} | {{ __('pages.Buy Price') }} | {{ __('pages.Total Cost') }} | |||
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $product->name }} | {{ $product->instock }} | {{setting('currency')}}{{ number_format($product->price,2) }} | {{setting('currency')}}{{ number_format($product->buy_price,2) }} | {{setting('currency')}}{{ number_format($product->buy_price * $product->instock,2) }} | |||
{{ __('pages.No Data Avaiable') }} |
||||||||