@extends('layouts.business.master') @section('title') {{ __('Loss Profit Reports') }} @endsection @section('main_content')
| {{__('Opening Stock')}} | {{ $opening_stock_by_purchase }} |
| {{__('(By purchase price)')}} | |
| {{__('Opening Stock')}} | {{ $opening_stock_by_sale }} |
| {{__('(By sale price)')}} | |
| {{__('Total purchase:')}} | {{ currency_format($total_purchase_price, currency: business_currency()) }} |
| {{__('Total purchase shipping charge:')}} | {{ currency_format($total_purchase_shipping_charge, currency: business_currency()) }} |
| {{__('Total Sell discount:')}} | {{ currency_format($total_sale_discount, currency: business_currency()) }} |
| {{__('Total Sell Return:')}} | {{ currency_format($all_sale_return, currency: business_currency()) }} |
| {{__('Closing stock')}} | {{ $closing_stock_by_purchase }} |
| {{__('(By purchase price)')}} | |
| {{__('Closing stock')}} | {{ $closing_stock_by_sale }} |
| {{__('(By sale price)')}} | |
| {{__('Total Sales:')}} | {{ currency_format($total_sale_price, currency: business_currency()) }} |
| {{__('Total sell shipping charge:')}} | {{ currency_format($total_sale_shipping_charge, currency: business_currency()) }} |
| {{__('Total Purchase Return:')}} | {{ currency_format($all_purchase_return, currency: business_currency()) }} |
| {{__('Total Purchase discount:')}} | {{ currency_format($total_purchase_discount, currency: business_currency()) }} |
| {{__('Total sell round off:')}} | {{ currency_format($total_sale_rounding_off, currency: business_currency()) }} |