@extends('layouts.main') @section('main-container')
@if (Session::has('success')) @endif @if($errors->any()) @endif
@csrf
Opening Balance
Search
@csrf
@php $count = 1; $tcredit=0; $tdebit=0; @endphp @foreach ($masjournals as $masjournal) @php $tdebit=$masjournal->debit+$tdebit; $tcredit=$masjournal->credit+$tcredit; @endphp @endforeach @php echo ""; @endphp
Account Client Employee Vendor Chart Of Account Cost Center Debit Credit Delete
{{ $masjournal->accountno }} {{ $masjournal->cname }} {{ $masjournal->emp_name }} {{ $masjournal->clients_name }} {{ $masjournal->description }} {{ $masjournal->costcenter_dec }} {{ $masjournal->debit }} {{ $masjournal->credit }}
Total $tdebit $tcredit
@endsection