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

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

{{__('lng.ProgramsTable')}}
{{__('lng.CreateNew')}}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach($Programs as $Program) @php $Date = date("d-m-Y",strtotime($Program->date)); @endphp @php $ExpireDate = date("d-m-Y",strtotime($Program->expire)); @endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Title')}} {{__('lng.ReceiptVoucher')}} {{__('lng.PaymentVoucher')}} {{__('lng.IsActive')}} {{__('lng.Action')}}
{{++$si}} {{$Program->title}} {{$Program->ReceiptVoucher->title}} {{$Program->PaymentVoucher->title}} @if($Program->is_active) {{__('lng.Active')}} @else {{__('lng.Inactive')}} @endif
@csrf @method('delete')

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

@endif
@endsection