@extends('layouts.adminapp') @section('title') {{ __('lng.Pension') }} @endsection @section('active_register', 'active') @section('open_register', 'open') @section('open_field', 'open') @section('active_field', 'active') @section('active_pension', 'active') @section('content')

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

{{ __('lng.PensionTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($Pensions as $Pension) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Title') }} {{ __('lng.Authority') }} {{ __('lng.Amount') }} {{ __('lng.Narration') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Pension->title }} {{ $Pension->authority }} @currency($Pension->amount) {{ $Pension->narration }}
@csrf @method('delete')

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

@endif
@endsection