@extends('user.layouts.master')
@section('breadcrumb')
@include('user.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("user.dashboard"),
]
], 'active' => __(@$page_title)])
@endsection
@section('content')
{{-- create card customer --}}
@if($user->strowallet_customer == null)
@include('user.sections.virtual-card-strowallet.component.create-customer')
@endif
{{-- check and update for customer --}}
@if(isset($user->strowallet_customer) )
@if(isset($user->strowallet_customer->status) && $user->strowallet_customer->status == global_const()::CARD_UNDER_STATUS || $user->strowallet_customer->status == global_const()::CARD_LOW_KYC_STATUS)
@include('user.sections.virtual-card-strowallet.component.check-customer-status')
@endif
@endif
{{-- Create card --}}
@if(isset($user->strowallet_customer))
@if(isset($user->strowallet_customer->status) && $user->strowallet_customer->status == global_const()::CARD_HIGH_KYC_STATUS)
@include('user.sections.virtual-card-strowallet.component.create-card')
@endif
@endif
@endsection
@push('script')
@endpush