@extends('layouts.app') @php $cityToCountry= file_get_contents(public_path('countriesdata.json')); $cityToCountry=json_decode($cityToCountry,true); $countriesJs=array(); foreach($cityToCountry as $key=>$value){ $countriesJs[$key]=$value; } @endphp @section('content')
@if($message = Session::get('success'))

{{trans('lang.your_wallet_amount_added_successfully')}}

@endif
@section('script') @if($message = Session::get('success')) @endif @endsection @endsection