{{ trans('webtools/tools/timestamp-converter.human-readable-time') }} Seconds
1 minute 60 seconds
1 hour 3600 seconds
1 day 86400 seconds
1 week 604800 seconds
1 month 2629743 seconds
1 year 31556926 seconds


@if($this->convertedTimestamp)

{{ $this->convertedTimestamp }}

@endif
@if($this->convertedDate)

{{ trans('webtools/tools/timestamp-converter.timestamp') }} {{ $this->convertedDate }}
{{ date("M d, Y h:i:s A", $this->convertedDate) }}

@endif
@if($this->convertedFormatted)

{{ trans('webtools/tools/timestamp-converter.timestamp') }} {{ $this->convertedFormatted }}
{{ date("M d, Y h:i:s A", $this->convertedFormatted) }}

@endif @if($this->formattedError)
{{ trans('webtools/tools/timestamp-converter.error-formatted') }}
@endif
@if($this->seconds)

{{ number_format($this->seconds / (86400 * 365), 2) }} year(s), {{ number_format($this->seconds / (86400 * 30), 2) }} month(s), {{ number_format($this->seconds / 86400, 2) }} day(s), {{ number_format($this->seconds / 3600, 2) }} hour(s), {{ number_format($this->seconds / 60, 2) }} minute(s).

@endif