@extends('layouts.app') @section('title', 'Manage Service - ' . $order->product->name) @section('content') @if ($is_shared_hosting)
@if(session('success_message'))
{{ session('success_message') }}
@endif @if(session('error_message'))
{{ session('error_message') }}
@endif @if ($unpaid_invoice_id)
You have an unpaid invoice for this service. Pay Invoice
@endif

{{ $order->product->name }}

Status: {{ $order->status }}
{{ $order->domain_name }}

Disk Usage

{{ round($disk_usage_percent) }}%

{{ $disk_usage_text }}

Bandwidth

{{ round($bandwidth_usage_percent) }}%

{{ $bandwidth_usage_text }}

Last Updated: Now

Quick Shortcuts

@if ($order->status === 'Active') @foreach ($shortcuts as $shortcut) {{ $shortcut['label'] }} @endforeach @else

Shortcuts are available once the service is active.

@endif
Registration Date{{ $order->created_at->format('d/m/Y') }}
Recurring Amount৳{{ number_format($order->product->price, 2) }} BDT
Next Due Date{{ ($order->status === 'Active' && !empty($order->activated_at)) ? \Carbon\Carbon::parse($order->activated_at)->addMonth()->format('d/m/Y') : 'N/A' }}
Billing Cycle{{ $order->product->term }}
Payment Method{{ !empty($order->payment_method) ? $order->payment_method : 'N/A' }}
{{ $order->domain_name }} Visit Website
Server Location Default
@else

{{ $order->domain_name }}

@if ($unpaid_invoice_id)
You have an unpaid invoice for this service.Pay Invoice
@endif @if(session('success_message'))
{{ session('success_message') }}
@endif @if(session('error_message'))
{{ session('error_message') }}
@endif

{{ $order->product->name }}

{{ $order->status }}
Registration Date: {{ $order->created_at->format('d/m/Y') }}Next Renew Date: {{ ($order->status === 'Active' && !empty($order->activated_at)) ? \Carbon\Carbon::parse($order->activated_at)->addMonth()->format('d/m/Y') : 'N/A' }}Renew Amount: TK {{ number_format($order->product->price, 2) }} BDTBilling Cycle: {{ $order->product->term }}
Registration Date{{ $order->created_at->format('d/m/Y') }}
Recurring Amount৳{{ number_format($order->product->price, 2) }} BDT
Next Due Date{{ ($order->status === 'Active' && !empty($order->activated_at)) ? \Carbon\Carbon::parse($order->activated_at)->addMonth()->format('d/m/Y') : 'N/A' }}
Billing Cycle{{ $order->product->term }}
Payment Method{{ !empty($order->payment_method) ? $order->payment_method : 'N/A' }}
{{ $order->domain_name }}Visit Website
ServerGermany
@if ($order->status === 'Active') @if ($is_self_hosted)
License Information

Use this license key to activate your software on the specified domain.

Licensed Domain: {{ $order->domain_name }} Your License Key: {{ $license_key ? $license_key : 'Not Generated Yet' }} Available Credits: {{ $order->product->credit ?? 'N/A' }}
@elseif ($is_hosted)
Dashboard Credentials

Use these credentials to log in to your service dashboard.

Username: {{ $order->cpanel_user }} Email: {{ $order->contact_email }} Password: {{ $order->remote_password }}
@endif @else
Service Information

Service and related information will be available here once the order status is 'Active'.

@endif
@endif @endsection