@extends('business::layouts.master') @section('title') {{ __('Dashboard') }} @endsection @section('main_content')
{{ __('Total Sales') }}
{{ __('Total Purchase') }}
{{ __('Total Income') }}
{{ __('Total Expense') }}
{{ __('Total Customer') }}
{{ __('Total Supplier') }}
{{ __('Sales Returns') }}
{{ __('Purchase Returns') }}
{{ __('Profit') }}:
{{ __('Loss') }}:
| {{ __('SL') }} | {{ __('Name') }} | {{ __('Alert Qty') }} | |
|---|---|---|---|
| {{ $loop->index + 1 }} | {{ $stock->productName }} | @if ($stock->productStock <= $stock->alert_qty){{ $stock->productStock }} | @else{{ $stock->productStock }} | @endif
{{ __('Purchase') }}:
{{ __('Sales') }}:
{{ __('Income') }}:
{{ __('Expense') }}:
| {{ __('Date') }} | {{ __('Invoice') }} | {{ __('Customer') }} | {{ __('Total') }} | {{ __('Paid') }} | {{ __('Due') }} |
|---|---|---|---|---|---|
| {{ formatted_date($sale->created_at) }} | {{ $sale->invoiceNumber }} | {{ $sale->party->name ?? '' }} | {{ currency_format($sale->totalAmount, 'icon', 2, business_currency()) }} | {{ currency_format($sale->paidAmount, 'icon', 2, business_currency()) }} | {{ currency_format($sale->dueAmount, 'icon', 2, business_currency()) }} |
| {{ __("Date") }} | {{ __("Invoice") }} | {{ __("Customer") }} | {{ __("Total") }} | {{ __("Paid") }} | {{ __("Due") }} |
|---|---|---|---|---|---|
| {{ formatted_date($purchase->created_at) }} | {{ $purchase->invoiceNumber }} | {{ $purchase->party->name ?? '' }} | {{ currency_format($purchase->totalAmount, 'icon', 2, business_currency()) }} | {{ currency_format($purchase->paidAmount, 'icon', 2, business_currency()) }} | {{ currency_format($purchase->dueAmount, 'icon', 2, business_currency()) }} |