@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") }} {{ getAmount(@$myCard->balance,2) }} {{ get_default_currency_code() }}
{{ __("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") }}
@php $card_pan = str_split($myCard->card_number, 4); @endphp @foreach($card_pan as $key => $value) {{ @$value }} @endforeach
{{ __("Cvv") }}
{{ __(@$myCard->cvv) }}
{{__("expiration")}}
{{@$myCard->expiry }}
{{ __("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, ])
@endsection @push('script') @endpush