@extends('layouts.adminapp') @section('title') {{ __('lng.EventTokenListReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('active_event_token_report', 'active') @section('content')

{{ __('lng.EventTokenListReport') }}

{{ __('lng.Back') }}
@csrf
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; $totalAmount=0;@endphp @foreach ($EventTokenLists as $EventTokenList) @if($EventTokenList->is_completed == 1) @php $totalAmount += $EventTokenList->amount; @endphp @endif @endforeach @if ($SerachValue == '1') @endif
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.Date') }} {{ __('lng.Place') }} {{ __('lng.Amount') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $EventTokenList->Member->name }} {{ $EventTokenList->Member->house->name }} {{ $EventTokenList->barcode }} @currency( $EventTokenList->amount ) @if($EventTokenList->is_completed ==1) {{ __('lng.Completed') }} @else {{ __('lng.Pending') }} @endif
{{ __('lng.TotalAmount') }} @currency($totalAmount)

{{ __('lng.Showing') }} {{ $EventTokenLists->count() }} {{ __('lng.Items') }}

@endif
@endsection