@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')
- {{ __('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
- {{ __('Owned quantity') }}
- {{ $investment->getCurrentQuantity() }}
- {{ __('Latest price') }}
- {{ $investment->getLatestPrice() }}
- {{ __('Latest owned value') }}
- {{ $investment->getCurrentQuantity() * $investment->getLatestPrice() }}
- {{ __('Buying cost') }}
- {{ __('Added quantity') }}
- {{ __('Removed quantity') }}
- {{ __('Selling revenue') }}
- {{ __('Dividend') }}
- {{ __('Commissions') }}
- {{ __('Taxes') }}
- {{ __('Quantity') }}
- {{ __('Value') }}
- {{ __('Result') }}
- {{ __('ROI') }}
- {{ __('Annualized ROI') }}
- {{ __('TBD') }}
@include('template.components.model-delete-form')
@stop