@extends('user.layouts.master') @section('breadcrumb') @include('user.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("user.dashboard"), ] ], 'active' => __(@$page_title)]) @endsection @section('content')
!
{{ __(@$page_title) }}
{{ __("Current Balance") }} {{ get_amount(@$myCard->balance,$myCard->currency) }}
{{ __("Card Type") }}
{{ __((ucwords(@$myCard->card_type))) }}
{{ __("Card Brand") }}
{{ __((ucwords(@$myCard->card_brand??"Visa"))) }}
{{ __("cardI d") }}
{{ @$myCard->card_id }}
{{ __("customer Id") }}
{{ @$myCard->customer_id }}
{{ __("card Number") }}
@if(is_null($myCard->card_number) ) ---- ---- ---- ---- @else @php $card_pan = str_split($myCard->card_number, 4); @endphp @foreach($card_pan as $key => $value) {{ @$value }} @endforeach @endif
{{ __("Cvv") }}
{{ __(@$myCard->cvv??"***") }}
{{__("expiration")}}
{{@$myCard->expiry??"00/00/0000" }}
{{ __("city") }}
{{ @$myCard->user->strowallet_customer->city??"" }}
{{ __("state") }}
{{ $myCard->user->strowallet_customer->state??"" }}
{{__("zip Code")}}
{{ @$myCard->user->strowallet_customer->zipCode??"" }}
{{__("Status") }}
@include('admin.components.form.switcher',[ 'name' => 'is_active', 'value' => old('is_active',@$myCard->is_active ), 'options' => [__('UnFreeze') => 1,__('Freeze') => 0], 'onload' => true, 'data_target' => @$myCard->id, ])
!
{{ __("Billing Address") }}
  • {{ __("Billing Country") }}
    United State
  • {{ __("Billing City") }}
    Miami
  • {{ __("Billing State") }}
    3401 N. Miami, Ave. Ste 230
  • {{ __("Billing Zip Code") }}
    33127
@endsection @push('script') @endpush