@extends('layouts.app') @section('title') {{'Trading Accounts'}} @endsection @section('content')
Trading Accounts Back
@if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
Start Date
End Date

 


@include('layouts.head')

Trading Accounts

{!! date('d-F-Y', strtotime($start_date)) !!} to {!! date('d-F-Y', strtotime($end_date)) !!}

@php $Stock; $Purchase = $summary_info->Purchase; $Sales = $summary_info->Sales; $Nett_Profit = $Stock - $Purchase + $Sales; $G_Debit_total = $Purchase + $Nett_Profit; $G_Credit_total = $Stock + $Sales; @endphp
S.L. Accounts Name Amount
1 Closing Stock Value - {{ number_format($Stock,2) }}
2 Purchase {{ number_format($Purchase,2) }} -
3 Sales - {{ number_format($Sales,2) }}
*** Gross Profit / Loss {{ number_format($Nett_Profit,2) }} -
{{ number_format($G_Debit_total,2) }} {{ number_format($G_Credit_total,2) }}
@endsection