@extends('layout.main') @section('title', 'Daftar Pindah Kas') @section('prev-page') Home @endsection @section('content') @php $panel_colapse = !empty($input->sa) || !empty($input->da) ? '' : 'panel-collapsed'; @endphp
Cari Berdasarkan
@csrf
Daftar Transaksi
@php $i = ($metadata->currentPage - 1) * $metadata->perPage; @endphp @forelse($transactions as $transaction) @empty @endforelse
# Tanggal Rekening Asal Nilai Rekening Tujuan Nilai Teks Mutasi Selisih Status  
{{ ++$i }} {{ date_format(date_create($transaction->date), 'd M Y') }} {{ $transaction->source->account->name }} Rp{{ number_format($transaction->source->amount, 0, ',', '.') }} {{ $transaction->destination->account->name }} Rp{{ number_format($transaction->destination->amount, 0, ',', '.') }} @if (empty($transaction->destination->mutation)) {{ '-' }} @else {{ mb_strimwidth(strip_tags($transaction->destination->mutation), 0, 30, '...') }} @endif Rp{{ number_format(abs($transaction->source->amount - $transaction->destination->amount), 0, ',', '.') }} {{ $transaction->status->name }} @if (($transaction->destination->amount == 0 || $transaction->status->id == 1) && strtotime($transaction->created) > strtotime('-24 hours'))
@endif
Belum ada data.
@if (!empty($metadata->links)) @endif
@endsection @section('other-scripts') @endsection