2020-06-18 12:51:47 +02:00
|
|
|
@extends('portal.ninja2020.layout.clean')
|
|
|
|
@section('meta_title', ctrans('texts.view_quote'))
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
@if(!$quote->isApproved())
|
2021-01-14 13:29:46 +01:00
|
|
|
@component('portal.ninja2020.quotes.includes.actions', ['quote' => $quote])
|
|
|
|
@section('quote-not-approved-right-side')
|
|
|
|
<a href="{{ route('client.quote.show', $quote->hashed_id) }}?mode=portal" class="mr-4 text-primary">
|
|
|
|
← {{ ctrans('texts.client_portal') }}
|
|
|
|
</a>
|
|
|
|
@endsection
|
|
|
|
@endcomponent
|
2020-06-18 12:51:47 +02:00
|
|
|
@endif
|
|
|
|
|
|
|
|
<iframe src="{{ $quote->pdf_file_path() }}" class="h-screen w-full border-0"></iframe>
|
2021-01-14 13:29:46 +01:00
|
|
|
@endsection
|