@extends('admin.layouts.app') @section('content')

{{ __('All Application Submissions')}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Full Name')}} {{ __('Mobile')}} {{ __('Email')}} {{ __('Applicant ID')}} {{__('Date')}} {{ __('Print')}}
{{$row->first_name}} {{$row->last_name}} {{$row->mobile_no ?? ''}} {{$row->email ?? ''}} {{$row->applicant_id ?? ''}} {{ display_datetime($row->updated_at)}}
{{csrf_field()}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection