@extends('components.admin-layout') @section('content')

All Transactions

  • @if (!empty($pager) && $pager == "daily-earning") @elseif (!empty($pager) && $pager == "fortlink-bonus") @else @endif
  • {{--
  • --}}
{{-- search will enter here --}}
Creator
Type
Transaction id
Amount
{{--
proof
--}}
Created At
Action
@foreach ($transactions as $tnx)
{{ $tnx->creator }}
{{ $tnx->type }}
{{ $tnx->tnxId }}
${{ number_format($tnx->amount, 2, '.', ',') }}
{{ date('d M,Y', strtotime($tnx->createdAt)) }}
{{-- modal --}}
@endforeach
@if ($transactions->count() < 1) @endif
{{--
{{ $users->links() }}
--}}
{{ $transactions->links() }}
@endsection