@extends('layouts.app') @section('title', __('account.profit_and_loss')) @section('content')
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('account.summary_and_gross_profit') }}

{{----}}
{{ __('item.transaction_type') }} {{ __('app.total_amount') }}
{{ __('sale.sale_without_tax') }} (+) 0.00
{{ __('sale.sale_return_without_tax') }} (-) 0.00
{{ __('purchase.purchase_without_tax') }} (-) 0.00
{{ __('purchase.purchase_return_without_tax') }} (+) 0.00
{{ __('account.gross_profit') }} 0.00
{{ __('account.expense_without_tax') }} (-) 0.00
{{ __('carrier.shipping_charge') }} (-) 0.00
{{ __('account.net_summary') }} 0.00

{{ __('item.transaction_type') }} {{ __('app.total_amount') }}
{{ __('account.gross_profit') }}
{{ __('account.gross_profit') }} = {{ __('sale.sale_amount') }} - {{ __('purchase.purchase_cost') }}
{{ __('app.note').' : '.__('purchase.we_calcuating_avg_purchase_price_of_item') }}
0.00
{{ __('account.net_profit') }}
{{ __('account.net_profit') }} = {{ __('account.gross_profit').' - '. __('tax.tax_amount').' ('. __('sale.sale') .')' }}
0.00
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('account.itew_wise_profit_and_loss') }}
{{-- Before Tax --}} {{-- After Tax --}}
# {{ __('app.date') }} {{ __('sale.code') }} {{ __('customer.customer') }} {{ __('sale.sale_amount') }} {{ __('purchase.purchase_cost') }} {{ __('tax.tax_amount') }} {{ __('account.gross_profit') }}{{ __('account.net_profit') }}
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('account.itew_wise_profit_and_loss') }}
# {{ __('item.item_name') }} {{ __('item.brand.brand') }} {{ __('item.avg_sale_price') }} {{ __('item.quantity') }} {{ __('item.avg_purchase_price') }} {{ __('sale.sale_total') }} {{ __('purchase.purchase_total') }} {{ __('account.gross_profit') }} {{ __('account.net_profit') }}
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('account.brand_wise_profit_and_loss') }}
{{-- Before Tax --}} {{-- After Tax --}}
# {{ __('item.brand.brand') }} {{ __('item.quantity') }} {{ __('sale.sale_amount') }} {{ __('purchase.purchase_cost') }} {{ __('tax.tax_amount') }} {{ __('account.gross_profit') }}{{ __('account.net_profit') }}
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('account.category_wise_profit_and_loss') }}
{{-- Before Tax --}} {{-- After Tax --}}
# {{ __('item.category.category') }} {{ __('item.quantity') }} {{ __('sale.sale_amount') }} {{ __('purchase.purchase_cost') }} {{ __('tax.tax_amount') }} {{ __('account.gross_profit') }}{{ __('account.net_profit') }}
{{-- CSRF Protection --}} @csrf @method('POST')
{{ __('account.customer_wise_profit_and_loss') }}
{{-- Before Tax --}} {{-- After Tax --}}
# {{ __('customer.customer') }} {{ __('sale.sale_amount') }} {{ __('purchase.purchase_cost') }} {{ __('tax.tax_amount') }} {{ __('account.gross_profit') }}{{ __('account.net_profit') }}
@endsection @section('js') @include("plugin.export-table") @endsection