@extends('layouts.master')
@section('styles')
@endsection
@section('content')
@php
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('admin.dashboard')],
['label' => ucfirst(request('type')) . ' Users', 'url' => '#', 'active' => true],
];
@endphp
@foreach ($cards as $card)
@endforeach
@php
$columns = [
['checkbox' => true, 'class' => 'ps-4'],
['label' => 'Name'],
['label' => 'Email'],
['label' => 'User Type'],
['label' => 'Balance'],
['label' => 'Diamond'],
['label' => 'Status'],
['label' => 'Action'],
];
@endphp
@endsection
@section('scripts')
@include('layouts.components.common-script')
@php
$statusMap = [
'active' => '1',
'inactive' => '0',
'banned' => '2',
];
$subMap = [
'active-subscription' => '1',
'expired-subscription' => '2',
];
@endphp
@endsection