<!-- $o = App\Models\Service\Host::class -->
<div class="card">
	@if($o->service->isPending())
		<div class="ribbon-wrapper ribbon-lg">
			<div class="ribbon bg-warning">
				Pending
			</div>
		</div>
	@endif

	<div class="card-header bg-gray-dark">
		<h3 class="card-title">Hosting Details</h3>
	</div>

	<div class="card-body bg-gray-dark">
		<table class="table table-sm">
			<tr>
				<th>Domain Name</th>
				<td>{{ $o->service->name }}</td>
			</tr>
			@if($o->provider->whitelabel_url)
				<tr>
					<th>Hosting URL</th>
					<td><a href="{{ $o->provider->whitelabel_url }}" target="_blank" class="text-white">{{ $o->provider->whitelabel_url }}</a></td>
				</tr>
				<tr>
					<th>Hosting Username</th>
					<td>{{ $o->host_username }}</td>
				</tr>
				<tr>
					<th>Hosting Password</th>
					<td>{{ $o->host_password }}</td>
				</tr>
			@endif
			@if($o->service_connect_date)
				<tr>
					<th>Connected</th>
					<td>{{ $o->service_connect_date->format('Y-m-d') }}</td>
				</tr>
			@endif
			@if ($o->inContract())
				<tr>
					<th>Contract Term</th>
					<td>{{ $o->service->contract_term }} months</td>
				</tr>
				<tr>
					<th>Contract End</th>
					<td>{{ $o->service->contract_end->format('Y-m-d') }} <small>({{ $o->service->contract_end->diffForHumans() }})</small></td>
				</tr>
			@endif
			<tr>
				<th>Cancel Notice</th>
				<td>Before renewal</td>
			</tr>
		</table>
	</div>
</div>