@extends('layouts.adminapp') @section('content') {{-- Member Registeration --}}

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

{{__('lng.TokenDistributionsTable')}}
{{__('lng.CreateNew')}}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach($TokenDistributions as $TokenDistribution) @php $Date = date("d-m-Y",strtotime($TokenDistribution->date)); @endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Title')}} {{__('lng.Date')}} {{__('lng.Amount')}} {{__('lng.Narration')}} {{__('lng.Action')}}
{{++$si}} {{$TokenDistribution->title}} {{$Date}} @currency($TokenDistribution->amount) {{$TokenDistribution->narration}}
@csrf @method('delete')

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

@endif
@endsection