@extends('layouts.app') @section('content')
    @foreach($lottoList as $item) @php // Mapping logo $logoMap = [ 'TOTOMACAU00' => 'https://cdn.globalcontentcloud.com/game-images/totomacau-pools/9500/game_logo.webp', 'KINGKONG17' => 'https://cdn.globalcontentcloud.com/game-images/kingkong-pools/6947/game_logo.webp', ]; $logoLotto = $logoMap[$item['shortname']] ?? 'https://via.placeholder.com/150'; $slug = strtolower($item['shortname']); @endphp
  • {{-- IMAGE --}}
    {{-- TITLE --}}
    Live Results

    {{ $item['name'] }}

    {{-- RESULT --}}
    Result: {{ $item['result_date'] }}
      @forelse($item['result'] as $num)
    • {{ $num }}
    • @empty
    • -
    • @endforelse
    {{-- LINKS --}} {{-- COUNTDOWN --}}
    {{ $item['countdown'] }}
  • @endforeach
@endsection