@extends($layout) @section('content') {!! $tpl->displayNotification() !!}
Jump right back in
@foreach ($recentProgressCanvas as $board)
{!! __($board['name']) !!} ({{ $board['count'] }})
{{ $tpl->escape($board['lastTitle']) }}
{!! __('label.last_updated') !!} {{ format($board['lastUpdate'])->date() }} {{ format($board['lastUpdate'])->time() }}

@php $percentDone = 0; if (isset($canvasProgress[$board['module']])) { $percentDone = round($canvasProgress[$board['module']] * 100); } @endphp
{!! sprintf(__('text.percent_complete'), $percentDone) !!}
{!! sprintf(__('text.percent_complete'), $percentDone) !!}
@endforeach @if (! is_array($recentProgressCanvas) || count($recentProgressCanvas) == 0)


{!! file_get_contents(ROOT . '/dist/images/svg/undraw_design_data_khdb.svg') !!}

{!! __('headline.no_blueprints_yet') !!}


{!! __('text.no_blueprints_yet') !!}
{!! __('button.start_here_project_value') !!}
@endif
@if ($login::userIsAtLeast($roles::$editor))

{!! __('description.other_tools') !!}

@foreach ($otherBoards as $board) @if (! isset($board['visible']) || $board['visible'] === 1)
{!! __($board['name']) !!} {!! __($board['description']) !!}
@endif @endforeach
@endif
@once @push('scripts') @endpush @endonce @endsection