@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($myStakings as $staking) @if (\Carbon\Carbon::parse($staking->end_at) > now()) @endif @empty @endforelse
@lang('Invest Date') @lang('Invest Amount') @lang('Total Return') @lang('Interest') @lang('Remaining') @lang('End At')
{{ showDateTime($staking->created_at) }} {{ showAmount($staking->invest_amount) }} {{ showAmount($staking->invest_amount + $staking->interest) }} {{ showAmount($staking->interest) }} @if ($staking->end_at > now())

@else @lang('Completed') @endif
{{ showDateTime($staking->end_at) }}
{{ __($emptyMessage) }}
@if ($myStakings->hasPages())
{{ paginateLinks($myStakings) }}
@endif
@endsection @push('script') @endpush