@extends('layouts.admin')
@section('title', $wallet->user->name.'\'s Wallet')
@section('content')
@can('wallet')
{{ $wallet->balance['currency'] }}
Balance
{{ $wallet->reserve['currency'] }}
Reserve
{{ $wallet->max_debt['currency'] }}
Max Debt
{{ $wallet->coupon['currency'] }}
Coupon
{{ $wallet->debt['currency'] }}
Debt
{{ $wallet->package['currency'] }}
Package
Customer Details
- Name
- {{ $wallet->user->name }}
- Email
- {{ $wallet->user->email }}
- Mobile
- {{ $wallet->user->phone }}
@else
You Do Not Have Permission
@endcan
@endsection