@extends('layouts.main') @section('content')

SERVER NAME

{{ $server->name }}

CPU

@if($server->product->cpu == 0)Unlimited @else {{$server->product->cpu}} % @endif

Memory

@if($server->product->memory == 0)Unlimited @else {{$server->product->memory}}MB @endif

STORAGE

@if($server->product->disk == 0)Unlimited @else {{$server->product->disk}}MB @endif
{{ $server->created_at->isoFormat('LL') }}
{{__('Server Information')}}
{{ $server->id }}
{{ $server->identifier }}
{{ number_format($server->product->getHourlyPrice(), 2, '.', '') }}
{{ $server->product->getHourlyPrice() * 24 * 30 }}
{{ $server->location }}
{{ $server->node }}
{{ $server->product->backups }}
{{ $server->product->databases }}
@endsection