@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')
{{ __("cardI d") }}
{{ @$myCard->card_id }}
{{ __("card Holder") }}
{{ @$myCard->name }}
{{ __("currency") }}
{{Str::upper( @$myCard->currency) }}
{{ __("brand") }}
{{ @$myCard->brand }}
{{__("type")}}
{{ ucwords(@$myCard->type) }}
{{ __("card Pan") }}
{{ $myCard->maskedPan }}
{{ __("expiry Date") }}
{{ $myCard->expiryMonth > 9 ?'':'0' }}{{$myCard->expiryMonth }}/{{$myCard->expiryYear }}
{{ __("Cvv") }}
{{ __("***") }}
{{ __("Status") }}
@include('admin.components.form.switcher',[ 'name' => 'status', 'value' => old('status',@$myCard->status ), 'options' => [__('active') => 1,__('Inactive') => 0], 'onload' => true, 'data_target' =>@$myCard->id, ])
{{ __("reveal Details") }}
@endsection @push('script') @endpush