@extends('layouts.app') @section('title', 'Ecommerce Products') @section('custom-css') @endsection @section('content')
| # | {{ __('pages.Date') }} | {{ __('pages.Product Name') }} | {{ __('pages.Quantity') }} | {{ __('pages.Total Amount') }} | ||||
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ date('F m, Y', strtotime($sale->order_date)) }} | {{ $sale->name }} | {{ $sale->quantity }} | {{setting('currency')}}{{ number_format($sale->total_amount,2) }} | ||||
{{ __('pages.No Data Avaiable') }} |
||||||||