cms-laravel/resources/views/livewire/reports/registration-list.blade.php

40 lines
1.5 KiB
PHP

@extends('layouts.app')
@section('content')
<div class="container mt-4">
<div class="card">
<div class="card-header">
<h4>Registration Report</h4>
</div>
<div class="card-body">
<table class="table table-bordered">
<thead>
<tr>
<th>Date</th>
<th>No. of Activated Cards</th>
<th>No. of Registered Members</th>
</tr>
</thead>
<tbody>
@forelse ($data as $item)
<tr>
<td>{{ \Carbon\Carbon::parse($item['date'])->format('d-M-Y') }}</td>
<td>{{ $item['activated'] ?? '0' }}</td>
<td>{{ $item['registered'] ?? '0' }}</td>
</tr>
@empty
<tr>
<td colspan="3" class="text-center">No data found.</td>
</tr>
@endforelse
</tbody>
</table>
@if ($updating)
<div class="text-center">
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Loading...
</div>
@endif
</div>
</div>
</div>
@endsection