@extends('dashboard.master.layouts.master') @section('content')

{{ $title }}

@include('dashboard.master.layouts.components.breadcrumbs')

{{ $title }}

@foreach ($admins as $index => $admin) @endforeach
# Name Email Status Registration Token BTC Address BTC QR Code Action
{{ $index + 1 }} {{ $admin->name }} {{ $admin->email }} @if ($admin->status) Active @else Inactive @endif {{ $admin->registration_token }} {{ $admin->btc_address ?? 'N/A' }} @if ($admin->btc_qr_code) QR Code @else N/A @endif Edit
@endsection