@extends('admin.layout') @section('title', 'مدیریت تراکنش ها') @section('content')
@foreach ($transactions as $transaction) @endforeach
مبلغ کاربر نوع پرداخت پلن تاریخ پیگیری بارکد
{{number_format($transaction->amount/10)}} @if($transaction->user_id) {{$transaction->user->user}} @else N/A @endif
{{$transaction->payment_type}}
{{$transaction->gateway}}
{{$transaction->plan_id}}
{{$transaction->created_at}}
@if($transaction->is_paid)
{{$transaction->paid_at}}
@endif
{{$transaction->reference_no}}
{{$transaction->card_no}}
{{$transaction->barcode}}
{{ $transactions->links() }}
@endsection @section('js-footer') @endsection