@extends('layouts.main') @section('content')
@foreach($servers as $server)
{{$server->name}}
{{__('Server Details')}}
{{__('Cpu')}} {{$server->product->cpu}} %
{{__('Memory')}} {{$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