@extends('adminlayout.admin') @section('content')


From :

to

PROFIT AND LOSS REPORT

  • Opening Stock
  • Exempted
  • GST 12%
  • GST 18%
  • GST 5%
  • {{number_format($openingStock,2)}}
  • 0.00
  • {{number_format($gst12amount,2)}}
  • {{number_format($gst18amount,2)}}
  • {{number_format($gst5amount,2)}}
  • Purchase Accounts
  • Exempted
  • GST 12%
  • GST 18%
  • GST 5%
  • {{number_format($purchaseAccounts,2)}}
  • 0.00
  • {{number_format($purchaseAccounts12,2)}}
  • {{number_format($purchaseAccounts18,2)}}
  • {{number_format($purchaseAccounts5,2)}}
  • Direct Expenses
  • 0
@if(($purchaseAccounts+$openingStock)< ($saleAccounts+$closingStock))
  • Gross Profit c/o
  • {{number_format($profit,2)}}
@endif
  • Sale Accounts
  • GST Sale 12%
  • GST Sale 18%
  • GST Sale 5%
  • {{number_format($saleAccounts,2)}}
  • 00
  • 00
  • 00
  • Closing Stock
  • Exempted
  • GST 12%
  • GST 18%
  • GST 5%
  • {{number_format($closingStock,2)}}
  • 0.00
  • 0.00
  • 0.00
  • 0.00
@if(($purchaseAccounts+$openingStock) >= ($saleAccounts+$closingStock))
  • Gross Profit c/o
  • {{number_format($profit,2)}}
@endif
  • @if(($purchaseAccounts+$openingStock)< ($saleAccounts+$closingStock)) {{number_format(($purchaseAccounts+$openingStock+$profit),2)}} @else {{number_format(($purchaseAccounts+$openingStock),2)}} @endif
  • @if(($purchaseAccounts+$openingStock) < ($saleAccounts+$closingStock)) {{number_format(($saleAccounts+$closingStock),2)}} @else {{number_format(($saleAccounts+$closingStock+$profit),2)}} @endif
  • Indirect Expenses
  • 0.00
  • Gross Profit b/f
  • {{number_format($profit,2)}}
  • Indirect Incomes
  • 0.00
  • Total
  • {{number_format($profit,2)}}
  • Total
  • {{number_format($profit,2)}}
@endsection