@extends('layouts.admin') @section('title', tr('user_payments')) @section('content-header',tr('user_payments')) @section('breadcrumb')
  • {{tr('home')}}
  • {{tr('user_payments')}}
  • @endsection @section('content') @include('notification.notify')
    {{tr('user_payments')}} {{tr('view_users')}}
    @foreach($data as $i => $payment) @endforeach
    {{tr('id')}} {{tr('username')}} {{tr('post')}} {{tr('payment_id')}} {{tr('amount')}}
    {{showEntries($_GET,$i+1)}} {{$payment->user->name ?? tr('user_not_available')}} {{tr('view')}} {{$payment->payment_id}} $ {{$payment->amount}}
    {{$data->links()}}
    @endsection