@extends('includes.main') @section('main-container')

Customers

@if (session()->has('type')) @endif
Transection
@csrf
@if (isset($transectionsData['reverseTransectionArray']))
@if (session()->has('type')) @endif @if ($errors->any()) @endif
Transections ( {{ $name ?? '' }} )
@forelse ($transectionsData['reverseTransectionArray'] ?? [] as $transection) @empty @endforelse
Debit Credit Remain Total Remain Date Detail Action
{{ $transection->debit }} {{ $transection->credit }} {{ $transection->debit - $transection->credit }} {{ $transection->total_remain }} {{ $transection->date }} {{ $transection->detail }} @if (!$transection->invoice_id) {!! btnDelete($deleteRoute, $table, $transection->id) !!} {{-- --}} @endif
No record found.
@else

No data found.

@endif {{-- Modal --}} @endsection