Lae/resources/views/balances/transactions.blade.php

67 lines
1.9 KiB
PHP

@extends('layouts.app')
@section('title', '交易记录')
@section('content')
<h2>交易记录</h2>
<a href="?type=income">收入</a>
<a href="?type=payout">支出</a>
<a href="?payment=transfer">转账记录</a>
<div class="overflow-auto">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">模块</th>
<th scope="col">支付方式</th>
<th scope="col">说明</th>
<th scope="col">金额</th>
<th scope="col">余额</th>
<th scope="col">交易时间</th>
</tr>
</thead>
<tbody>
@foreach ($transactions as $t)
<tr>
<td>
<span class="module_name" module="{{ $t->module_id }}">{{ $t->module_id }}</span>
</td>
<td>
<x-payment :payment="$t->payment"></x-payment>
</td>
<td>
{{ $t->description }}
</td>
<td>
@if ($t->type === 'payout')
<span class="text-danger">
支出 {{ $t->amount }}
</span>
@elseif($t->type === 'income')
<span class="text-success">
收入 {{ $t->amount }}
</span>
@endif
</td>
<td>
{{ $t->user_remain }}
</td>
<td>
{{ $t->created_at }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
{{ $transactions->links() }}
<x-module-script/>
@endsection