-
Dashboard
-
Google Search Dashboard(Category Dashbaord)
{{-- ================= TOP TABS ================= --}}
@include('livewire.admin.partials.tab')
{{-- ================= FILTER CARD ================= --}}
{{-- START DATE --}}
{{-- END DATE --}}
{{-- BUTTONS --}}
{{-- ================= DATA TABLE ================= --}}
| # |
Category |
Total URLs |
Traffic URLs |
Clicks |
Impressions |
CTR |
Position |
Total Views |
Total Users |
Action |
@forelse ($crypto_news as $row)
| {{ $loop->iteration }} |
{{ $row->category }}
|
{{ number_format($row->total_urls) }} |
{{ number_format($row->total_trafic_urls) }} |
{{ number_format($row->click) }} |
{{ number_format($row->impresion) }} |
{{ $row->ctr }}
|
{{ $row->position }}
|
{{ number_format($row->total_view) }} |
{{ number_format($row->total_users) }} |
|
@empty
|
No Data Found
|
@endforelse