@php
$sender_country = App\Models\Country::where('id', auth()->user()->country_id)->first();
$receiver_country = App\Models\Country::where('id', session()->get('moneycart')['receiver_country'])->first();
@endphp