@extends('user.layouts.master') @push('css') @endpush @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->amount,2) }} {{ get_default_currency_code() }}
{{ __("Card Type") }}
{{ __((ucwords(@$myCard->card_type))) }}
{{ __("cardI d") }}
{{ @$myCard->card_id }}
{{ __("account Id") }}
{{ @$myCard->account_id }}
{{ __("card Pan") }}
@php $card_pan = str_split($myCard->card_pan, 4); @endphp @foreach($card_pan as $key => $value) {{ @$value }} @endforeach
{{ __("card Masked") }}
{{ @$myCard->masked_card }}
{{ __("Cvv") }}
{{ __(@$myCard->cvv) }}
{{ __("validity") }}
{{date("m/Y",strtotime(@$myCard->expiration)) }}
{{ __("Card Color") }}
{{ @$myCard->bg }}
{{__("Expiration")}}
{{date("m/Y",strtotime(@$myCard->expiration)) }}
{{ __("city") }}
{{ __($myCard->city) }}
{{ __("state") }}
{{ __($myCard->state) }}
{{__("address")}}
{{ __($myCard->address) }}
{{__("zip")}}
{{ __($myCard->zip_code) }}
{{ __("Status") }}
@include('admin.components.form.switcher',[ 'name' => 'is_active', 'value' => old('is_active',@$myCard->is_active ), 'options' => [__("unblock")=> 1,__("block") => 0], 'onload' => true, 'data_target' =>@$myCard->id, ])
@endsection @push('script') @endpush