@extends('layouts.commonmaster') @section('title') | View Event @endsection @section('content')
{{ $event->venue_name }}
{{ $event->team_a }} vs {{ $event->team_b }}
Clerks
{{ $clerk_count }}
Tickets Sold
{{ $totalTicketsSold }}
Aggregate Amount Earned
Ksh.{{ number_format($total_transaction_amount->transaction_amount, 2) }}
Event Banner

Event Tickets sold since creation

@foreach($event_fund_data as $efd) @endforeach @php $total = 0; @endphp @foreach($event_fund_data as $efd) @php $total += $efd->tier_ticket_count; @endphp @endforeach
Time period{{ $efd->name }}Total
Today{{ $efd->tier_ticket_count }}{{ $total }}

Available Ticket Tiers

@foreach($event_tickets as $eticket)
{{ $eticket->name }}

Enjoy the event

Ksh.{{ $eticket->price }}.00
@endforeach
@endsection() @push('scripts') @endpush