@extends('shared.layout') @section('content')
{{ __('Certificates shared with you') }} {{ trans_choice(':name has shared :count certificate with you.|:name has shared :count certificates with you.', $certificates->count(), ['name' => $share->user->name, 'count' => $certificates->count()]) }}
@forelse ($certificates as $certificate)
{{ $certificate->title }} @if ($certificate->issuer) {{ $certificate->issuer }} @endif
{{ __('Download') }}
@empty
{{ __('There are no files available in this share anymore.') }}
@endforelse
@if ($certificates->isNotEmpty())
{{ __('Download all as ZIP') }} @if ($share->password !== null) {{ __('The ZIP archive is encrypted with the same password you used to open this page.') }} @endif
@endif {{ __('This page is available until :date, after which it will stop working.', ['date' => $share->expires_at->translatedFormat('F j, Y H:i')]) }}
@endsection