@php
$wallet = App\Models\Wallet::whereUserId(auth()->id())->first();
$defaultCard = App\Models\Card::whereUserId(auth()->id())->whereIsDefault("1")->first();
@endphp
M&P wallet balance:
${{ $wallet->amount }}
@if ($defaultCard)
Default Card number:
**** **** **** {{ $defaultCard->last4 }}
@else
@endif
@else
@include('client.snow-plowing.login-and-registration')
@endif