@extends('layouts.app') @section('title', '交易记录') @section('content')

交易记录

收入 支出 转账记录
@foreach ($transactions as $t) @endforeach
类型与模块 支付方式 说明 入账 支出 余额 交易时间
@if ($t->type === 'payout') 支出 @elseif($t->type === 'income') 收入 @endif   {{ $t->module_id }} {{ $t->description }} {{ $t->income }} 元
{{ $t->income_drops }} Drops
{{ $t->outcome }} 元
{{ $t->outcome_drops }} Drops
{{ $t->balance ?? $t->balances }} 元
{{ $t->drops }} Drops
{{ $t->created_at }}
{{ $transactions->links() }} @endsection