@extends('Dashboard.layouts.app') @section('search') @endsection @section('user_index', 'active') @section('main_content')

User List

@forelse($pointUsage as $i=>$usage) @empty @endforelse
Order ID Point Usage Discounted Amount Order Status Created At
{{ $usage->unique_id }} {{ $usage->total_point }} {{ $usage->total_point_discount }} @if ($usage->status == 0) Pending @elseif ($usage->status == 1) Confirmed @elseif ($usage->status == 2) Completed @elseif ($usage->status == 3) Rejected @elseif ($usage->status == 4) Refunded @endif {{ $usage->created_at->diffForHumans() }}
{{ $pointUsage->links() }}
@endsection