@extends('admin.layout') @section('content')
{{__('All Subdomains')}}
@if (!empty(request()->input('type'))) @endif
@if (count($subdomains) == 0)

{{__('NO SUBDOMAIN FOUND')}}

@else
@foreach ($subdomains as $subdomain) @endforeach
{{__('Username')}} {{__('Subdomain')}} {{__('Status')}} {{__('Action')}}
{{$subdomain->username}} {{strtolower($subdomain->username)}}.{{env('WEBSITE_HOST')}}
@csrf
@endif
@endsection