@extends('backend-template')
@section('content')
User Payments
@include('admin.user-payments._filter')
Id |
User |
Type |
Status |
Created |
Updated |
Action |
@foreach($userpayments as $item)
@php
$payment_status_class = 'warning';
if ($item->payment_status === 'Approved') {
$payment_status_class = 'success';
}
@endphp
{{ $item->id }} |
{{ $item->user->full_name }} |
@if($item->out > 0)
@else
@endif
|
@if($item->out <= 0)
@endif
|
{{ $item->created_at }} |
{{ $item->updated_at }} |
Invoice
Email
|
@endforeach
@endsection