@extends('main') @section('main')
@if(!isset($avator) || !$avator)
@else
@endif

{{Session::get('username')}}个人财产


账号资产:{{$myself->coins}}{{$currency[$myself->bind_to]['name']}}

货币更改: 兑换

兑换后资产:

股市资产: @if(empty($shares)) 0{{$currency[$myself->bind_to]['name']}} @else 正在查询.. @endif

{{Session::get('username')}}股票投资


@if(empty($shares))

无股票投资记录

@else @foreach($shares as $sid => $sdata)
{{str_limit($sdata['name'], $limit = 10, $end = '...')}} {{$sdata['buying_price']}} {{$sdata['amount']}} 正在查询...
@endforeach @endif
@stop

@section('scripts') @stop