@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')
@forelse ($data ?? [] as $item)
@if($item->event === global_const()::TERMINATED)
@include('user.sections.virtual-card-strowallet.component.webhook.terminated')
@elseif($item->event === global_const()::CROSSBORDER)
@include('user.sections.virtual-card-strowallet.component.webhook.crossborder')
@elseif($item->event === global_const()::DECLINED)
@include('user.sections.virtual-card-strowallet.component.webhook.declined')
@endif
@empty
{{ __("No data found!") }}
@endforelse
@endsection
@push('script')
@endpush