@extends('layouts.master')
@section('styles')
@endsection
@section('content')
@php
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('admin.dashboard')],
['label' => 'Pending Diamond Store Approval', 'url' => '#', 'active' => true],
];
@endphp
@php
$columns = [
['checkbox' => true, 'class' => 'ps-4'],
['label' => 'User ID'],
['label' => 'Package | Amount | Benefit'],
['label' => 'Payment Method'],
['label' => 'Transaction ID'],
['label' => 'Payment Proof'],
['label' => 'Submit Date'],
['label' => 'Action'],
];
@endphp
@slot('footer')
@endslot
@endsection
@section('scripts')
@include('layouts.components.common-script')
@vite('resources/assets/js/modal.js')
@endsection