nanosanteservice/resources/views/pdf-viewer.blade.php

28 lines
703 B
PHP

<!DOCTYPE html>
<html lang="fr">
<head>
<title>PDF Viewer</title>
<style type="text/css">
body {
margin: 0; /* Reset default margin */
padding: 0;
overflow: hidden
}
iframe {
display: block; /* iframes are inline by default */
/*background: #000;*/
border: none; /* Reset default border */
height: 100vh; /* Viewport-relative units */
width: 100vw;
}
</style>
</head>
<body>
<iframe src="{{$url}}#toolbar=0"></iframe>
{{--<object data="{{$url}}" type="application/pdf">--}}
{{-- <div>No online PDF viewer installed</div>--}}
{{--</object>--}}
</body>
</html>