@extends('layouts.app')
@section('content')
@if ($search != null)
| Debit |
Credit |
Total |
| {{ $closing->debit }} |
{{ $closing->credit }} |
{{ $closing->total }} |
{{--
| Current |
30 Days |
60 Days |
90 Days |
Over 120 Days |
Total |
| {{ $aging->current }} |
{{ $aging->30_day }} |
{{ $aging->60_day }} |
{{ $aging->90_day }} |
{{ $aging->over_120_days }} |
{{ $aging->total }} |
--}}
| Posting Date |
Doc No |
Reference |
Plant |
Currency |
Type |
Amount |
Balance |
@foreach ($search as $key => $row)
| {{ $row->postng_date }} |
{{ $row->doc_no }} |
{{ $row->reference }} |
{{ $row->plant }} |
{{ $row->currency }} |
{{ $row->type }} |
{{ $row->amount }} |
{{ $row->balance }} |
@endforeach
@endif
@endsection