@extends('layouts.app') @section('pageTitle', 'Pindah Kas - List Data Pindah Kas') @section('content') @include('notify')
@if(!empty($finance_move)) @php $i = ($metadata->currentPage - 1) * $metadata->perPage; @endphp @foreach($finance_move as $post) @endforeach @else @endif @if(!empty($metadata->links)) @endif
# Tanggal Rekening Asal Nilai Rekening Tujuan Nilai Teks Mutasi Selisih Status  
{{ ++$i }} {{date('d M Y', strtotime($post->transaction_date))}} {{$post->source_account->name}} {{number_format($post->source_amount, 0,",",".")}} {{$post->dest_account->name}} {{number_format($post->dest_amount,0,',','.')}} {{$source_text_mutation}} {{number_format($post->selisih,0,',','.')}} {{$post->status->name}}
Belum ada data
{!! $metadata->links !!}
@endsection @section('custom_js') @endsection