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

{{$EventToken->title}}

{{__('lng.Back')}}
@foreach ($EventToken->EventTokenLists as $EventTokenList)
{{ __('lng.Event') }}  :   {{ $EventToken->title ?? '' }}
{{ __('lng.Author') }}   :   {{ $EventTokenList->Member->name ?? '' }}
{{ __('lng.House') }}   :   {{ $EventTokenList->Member->house->name ?? '' }}
{{ __('lng.RegisterNo') }}   :   #{{ $EventTokenList->Member->house->registernumber ?? '' }}
@if ($EventTokenList->amount) {{ __('lng.Amount') }}   :   @currency( $EventTokenList->amount )
@endif
@endforeach
@endsection