@extends('default') @section('title') Details & Logs @endsection @section('head') @endsection @section('content')
| 📍 | Country | Clicks | @php $total = 0; $rows = []; @endphp @foreach ($countrylist as $country) @php $total += $country['total']; $row = "
|---|---|---|
| " . $country['emoji'] . " | " . ($country['country'] ?? 'Unknown') . " | " . $country['total'] . " | 
| 🌎 | Total | {{ $total }} |