@extends('layouts.adminapp') @section('title') {{ __('lng.EventToken') }} @endsection @section('open_settings', 'open') @section('active_settings', 'active') @section('active_event_token', 'active') @section('content')

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

{{ __('lng.EventTokenTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($EventTokens as $EventToken) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.Date') }} {{ __('lng.Place') }} {{ __('lng.Amount') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $EventToken->title }} {{ $EventToken->date }} {{ $EventToken->place }} @currency($EventToken->min_amount)
@csrf @method('delete')

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

@endif
@endsection