@extends('layouts.adminLayout.dashboardLayout') @section('styles') @endsection @section('content')
{{ Breadcrumbs::render('UTRList', $utrList) }}

Back Add New
Per page
Reset
@php $i = 1; @endphp @if (isset($utrList) && !empty($utrList)) @foreach ($utrList as $index => $utr) @endforeach @endif
Sr. No. NTA ID Center No Exam Name Beneficiary Name Account No IFSC Amount UTR No UTR Date
{{ $i++ }} {{ $utr->{'NTA ID'} ?? '-' }} {{ $utr->{'CenterNo'} ?? '-' }} {{ $utr->{'ExamType'} ?? '-' }} {{ $utr->{'BeneficiaryName'} ?? '-' }} {{ $utr->{'AccountNo'} ?? '-' }} {{ $utr->{'IFSC'} ?? '-' }} {{ $utr->{'Amount'} ?? '-' }} {{ $utr->{'UTR No'} ?? '-' }} {{ date('d-m-Y', strtotime($utr->{'UTR Date'})) ?? '-' }}
@if (isset($utrList) && !empty($utrList))
Showing {{ $utrList->firstItem() }} to {{ $utrList->lastItem() }} of {{ $utrList->total() }} results
{{ $utrList->links('pagination::bootstrap-5') }}
@endif
@endsection @section('script') @endsection