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

Servers

@foreach($servers as $server)
{{$server->name}}
Server details
CPU {{$server->product->cpu}} %
RAM {{$server->product->memory}} MB
Disk {{$server->product->disk}} MB
Databases {{$server->product->databases}} MySQL
Backups {{$server->product->backups}}
Price per Hour {{number_format($server->product->getHourlyPrice(),2,".", "")}} {{CREDITS_DISPLAY_NAME}}
Price per Month {{$server->product->getHourlyPrice()*24*30}} {{CREDITS_DISPLAY_NAME}}
@endforeach
@endsection