@extends('layouts.adminapp')
@section('content')
{{-- Subscription Payment Report --}}
{{--
{{ __('lng.PaymentVoucherReport') }}
--}}
{{-- --}}
@if ($SearchResult)
@php echo $SearchResult @endphp
@else
{{ __('lng.SiNo') }} |
{{ __('lng.Title') }} |
{{ __('lng.Narration') }} |
{{ __('lng.Action') }} |
@php $si=0; @endphp
@foreach ($Educations as $Education)
{{ ++$si }} |
{{ $Education->title }} |
{{ $Education->narration }} |
|
@endforeach
@endif
@endsection