@extends('layouts.adminapp')
@section('content')
{{-- Member Registeration --}}
{{__('lng.ProgramReport')}}
@if ($SearchResult)
@php echo $SearchResult @endphp
@else
{{__('lng.SiNo')}} |
{{__('lng.Title')}} |
{{__('lng.ReceiptVoucher')}} |
{{__('lng.PaymentVoucher')}} |
{{__('lng.IsActive')}} |
{{__('lng.Narration')}} |
{{__('lng.Action')}} |
@php $si=0; @endphp
@foreach($Programs as $Program)
{{++$si}} |
{{$Program->title}} |
{{$Program->ReceiptVoucher->title ?? ''}} |
{{$Program->PaymentVoucher->title ?? ''}} |
@if($Program->is_active)
{{__('lng.Active')}}
@else
{{__('lng.Inactive')}}
@endif
|
{{$Program->narration}} |
|
@endforeach
@endif
@endsection