@extends('layouts.adminapp') @section('title') {{ __('lng.ProgramReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_program_report', 'open') @section('active_program_report', 'active') @section('content')

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

@include('PrintHeader.header')

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

@php $si=0; @endphp @foreach($Programs as $Program) @endforeach
{{__('lng.SiNo')}} {{__('lng.Title')}} {{__('lng.ReceiptVoucher')}} {{__('lng.PaymentVoucher')}} {{__('lng.IsActive')}} {{__('lng.Narration')}}
{{++$si}} {{$Program->title}} {{$Program->ReceiptVoucher->title ?? ''}} {{$Program->PaymentVoucher->title ?? ''}} @if($Program->is_active) {{__('lng.Active')}} @else {{__('lng.Inactive')}} @endif {{$Program->narration}}
{{ __('lng.Back') }}
@endsection