@extends('template.layouts.page') @section('title_postfix', __('Investment details')) @section('content_container_classes', 'container-fluid') @section('content_header') {{ __('Investment details') }} - {{ $investment->name }} @stop @section('content')
{{ __('Investment details') }}
{{ __('Name') }}
{{ $investment->name }}
{{ __('Symbol') }}
{{ $investment->symbol }}
{{ __('ISIN number') }}
{{ $investment->isin ?? __('Not set') }}
{{ __('Active') }}
@if($investment->active) @else @endif
{{ __('Group') }}
{{ $investment->investmentGroup->name }}
{{ __('Currency') }}
{{ $investment->currency->name }}
@if($investment->comment)
{{ __('Comment') }}
{{ $investment->comment }}
@endif
{{ __('Automatic update') }}
@if($investment->auto_update) @else @endif
@if($investment->auto_update)
{{ __('Price provider') }}
{{ $investment->investment_price_provider_name }}
@endif
{{ __('Current assets') }}
{{ __('Owned quantity') }}
{{ $investment->getCurrentQuantity() }}
{{ __('Latest price') }}
{{ $investment->getLatestPrice() }}
{{ __('Latest owned value') }}
{{ $investment->getCurrentQuantity() * $investment->getLatestPrice() }}
{{ __('Results') }}
{{ __('Buying cost') }}
{{ __('Added quantity') }}
{{ __('Removed quantity') }}
{{ __('Selling revenue') }}
{{ __('Dividend') }}
{{ __('Commissions') }}
{{ __('Taxes') }}
{{ __('Quantity') }}
{{ __('Value') }}
{{ __('Result') }}
{{ __('ROI') }}
{{ __('Annualized ROI') }}
{{ __('TBD') }}
{{ __('Transaction history') }}
{{ __('Price history') }}
@if($investment->investment_price_provider) @endif
{{ __('Quantity history') }}
@include('template.components.model-delete-form') @stop