{% extends "layout/base.twig" %} {% set title = 'Search Results' %} {% set pageTitle = 'Search Results' %} {% set pageDescription = 'Results for "' ~ query ~ '"' %} {% set pageIcon = 'fas fa-search' %} {% block content %}

Searching for:

{{ query }}

{% if existingDomains is not empty and pagination.total > 0 %}
Showing {{ pagination.showing_from }} to {{ pagination.showing_to }} of {{ pagination.total }} result(s)
{% endif %} {% if existingDomains is not empty %}

Found {{ pagination.total }} Matching Domain(s) in Your Portfolio

{% for domain in existingDomains %} {% set daysLeft = domain.daysLeft %} {% set expiryClass = domain.expiryClass %} {% endfor %}
Domain Registrar Expiration Status Actions
{{ domain.domain_name }} {{ domain.registrar ?? 'Unknown' }} {% if domain.expiration_date is not empty %}
{{ domain.expiration_date ? domain.expiration_date|date('M d, Y') : 'Unknown' }}
{{ daysLeft }} days
{% else %} Not set {% endif %}
{% if domain.status == 'active' %} {% set statusClass = 'bg-green-100 dark:bg-green-500/10 text-green-800 dark:text-green-400' %} {% else %} {% set statusClass = 'bg-gray-100 dark:bg-slate-700 text-gray-800 dark:text-slate-300' %} {% endif %} {{ domain.status|capitalize }} View Details →
{% if pagination.total_pages > 1 %} {% set currentPage = pagination.current_page %} {% set totalPages = pagination.total_pages %}
Page {{ currentPage }} of {{ totalPages }}
{% if currentPage > 1 %} {% endif %} {% if currentPage > 1 %} Previous {% endif %} {% set range = 2 %} {% set startPage = max(1, currentPage - range) %} {% set endPage = min(totalPages, currentPage + range) %} {% if startPage > 1 %} 1 {% if startPage > 2 %} ... {% endif %} {% endif %} {% for i in startPage..endPage %} {% if i == currentPage %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if endPage < totalPages %} {% if endPage < totalPages - 1 %} ... {% endif %} {{ totalPages }} {% endif %} {% if currentPage < totalPages %} Next {% endif %} {% if currentPage < totalPages %} {% endif %}
{% endif %} {% endif %} {% if isDomainLike and pagination.total == 0 %} {% if whoisData %}

WHOIS Lookup Results

Domain not found in your portfolio - showing WHOIS information

{{ whoisData.domain }}

{{ whoisData.registrar }}

{{ whoisData.expiration_date ? whoisData.expiration_date|date('M d, Y') : 'N/A' }}

{{ whoisData.creation_date ? whoisData.creation_date|date('M d, Y') : 'N/A' }}

{% if whoisData.nameservers is not empty %}
{% for ns in whoisData.nameservers %} {{ ns }} {% endfor %}
{% endif %}
{{ csrf_field()|raw }}

Want to monitor this domain?

{% elseif whoisError %}

WHOIS Lookup Failed

{{ whoisError }}

{% endif %} {% endif %} {% if pagination.total == 0 and not isDomainLike %}

No Results Found

No domains match your search. Try a different search term or enter a domain name to perform a WHOIS lookup.

{% endif %} {% endblock %}