@extends('admin.layouts.admin') {{-- =========== meta Title =================== --}} @section('title') لیست تراکنش ها @endsection {{-- =========== My Css Style =================== --}} @section('style') @endsection {{-- =========== My JavaScript =================== --}} @section('script') @endsection {{-- =========== CONTENT =================== --}} @section('content')
تعداد کل تراکنش ها ({{ $transactions->total() }})

@foreach($transactions as $key=>$item) @endforeach
ردیف کاربر مبلغ ref_id درگاه پرداخت وضعیت تاریخ
{{ $transactions->firstItem()+$key }} {{ $item->user->name == null ? $item->user->cellphone : $item->user->name }} {{ number_format($item->amount).' تومان ' }} {{ $item->ref_id==null ? '-' : $item->ref_id }} {{ $item->gateway_name }} {{ $item->status }} {{ verta($item->created_at)->format('%d %B,Y H:i') }}
مجموع 3500 تومان
{{ $transactions->render() }}
@endsection