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

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

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Full Name')}} {{ __('Phone')}} {{ __('Email')}} {{ __('Address')}} {{ __('Applying For')}} {{__('Date')}}
{{$row->first_name}} {{$row->last_name}} {{$row->phone ?? ''}} {{$row->email ?? ''}} {{$row->address ?? ''}} {{$row->applied ?? ''}} {{ display_datetime($row->updated_at)}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection