@extends('layouts.user') @section('contents')
{{ $bot->bot->name }}
@if ($bot->status == 'active')
@else
@endif
Activation Date {{ date('d-m-y H:i:s', strtotime($bot->created_at)) }}
Portfolio {{ formatAmount($bot->capital) }}
Portfolio Balance {{ formatAmount($bot->balance) }}
PNL @if ($bot->profit < 0) {{ ($bot->profit / $bot->capital) * 100 }}% @else +{{ ($bot->profit / $bot->capital) * 100 }}% @endif