Файловый менеджер - Редактировать - /home/clickysoft/public_html/somni.clickysoft.net/resources/views/landlord/lease_select.blade.php
Назад
@extends('landlord.layouts.landlord') @section('title', 'Landlord Dashboard - SOMNI') @section('links') <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" /> @endsection @section('content') <div class="db-backdrop"></div> <div class="main-section"> <x-landlord-side-nav /> <main class="layout-main"> <div class="content-wrapper"> <section class="profile-edit"> <div class="container-fluid custom-container"> <div class="row "> <div class="col-md-12"> <div class="main-db-layout"> <div class="row "> <div class="col-md-12 d-flex mod-heads"> {{-- <input type="hidden" id="document_path" value="{{env('APP_URL')}}/storage/{{ $document->document_path ?? '' }}" /> --}} <div class="col-md-6"> <div class="backto-db-button"> <a href="{{route('landlord.lease')}}" class="backto-tb-btn"> <svg xmlns="http://www.w3.org/2000/svg" width="15" height="48" viewBox="0 0 15 48" fill="none"> <path fill-rule="evenodd" clip-rule="evenodd" d="M4.06942 24L13 32.9617L11.9653 34L2 24L11.9653 14L13 15.0383L4.06942 24Z" fill="#0600C3"></path> </svg> Back to leases </a> </div> </div> <div class="col-md-6 text-right"> {{-- <button type="button" class="email-copy-btn">Save & Exit</button> --}} </div> </div> <div class="col-md-12 main_pdf_template_select chart-card"> <div class="heading mb-3 d-flex justify-content-between"> <div> <h3>Select Template <small> (General)</small></h3> </div> <div class="text-right"> <a href="{{route('landlord.lease.detail.page')}}?doc_id=" class="email-copy-btn" id="lease_doc_continue_btn" disabled>Continue</a> </div> </div> @if (count($templates) > 0) @foreach ($templates as $template) <div class="template_lease" data-doc-id="{{ $template->id }}"> <div class="pdf-thumb"> <img class="" data-pdf-thumbnail-file="{{asset('/storage/'.$template->document_path.'')}}" data-pdf-thumbnail-width="170" width="170" data-pdf-thumbnail-height="170" height="170" src="{{asset('/images/pdf.png')}}"> </div> <div class="pdf-link"> <img src="{{asset('/images/pdficon.svg')}}" alt="" class="img-fluid"> <a href="{{asset('/storage/'.$template->document_path.'')}}" target="_blank">{{basename($template->document_path,'.pdf')}}</a> </div> </div> @endforeach @else <p>No Templates yet</p> @endif </div> <div class="col-md-12 main_pdf_template_select chart-card mb-4"> <div class="heading mb-3 d-flex justify-content-between"> <div> <h3>Select Template <small> (Uploaded by you)</small></h3> </div> </div> @if (count($templates_mine) > 0) @foreach ($templates_mine as $template) <div class="template_lease" data-doc-id="{{ $template->id }}"> <div class="pdf-thumb"> <img class="" data-pdf-thumbnail-file="{{asset('/storage/'.$template->document_path.'')}}" data-pdf-thumbnail-width="170" width="170" data-pdf-thumbnail-height="170" height="170" src="{{asset('/images/pdf.png')}}"> </div> <div class="pdf-link"> <img src="{{asset('/images/pdficon.svg')}}" alt="" class="img-fluid"> <a href="{{asset('/storage/'.$template->document_path.'')}}" target="_blank">{{basename($template->document_path,'.pdf')}}</a> </div> </div> @endforeach @else <p>No Templates yet</p> @endif </div> </div> </div> </div> </div> </section> </main> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script src="https://www.gstatic.com/firebasejs/8.3.2/firebase.js"></script> <script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-messaging.js"></script> <link href="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.27/dist/sweetalert2.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.27/dist/sweetalert2.all.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script> <script src="{{asset('/js/global.js')}}"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.4.456/pdf.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.4.456/pdf.worker.js"></script> <script src="{{asset('/js/pdfThumbnails.js')}}" data-pdfjs-src="pdf.js/build/pdf.js"></script> <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script> <script src="{{asset('/js/lease.js')}}"></script> @if(!empty($verification)) <x-email-verification-popup :verification=$verification /> @endif @if(\Session::has('success')) <script> toastr.options = { "closeButton": true, "debug": false, "newestOnTop": false, "progressBar": false, "positionClass": "toast-top-right", "preventDuplicates": false, "onclick": null, "showDuration": "300", "hideDuration": "1000", "timeOut": "5000", "extendedTimeOut": "1000", "showEasing": "swing", "hideEasing": "linear", "showMethod": "fadeIn", "hideMethod": "fadeOut" } toastr.success('{!! \Session::get("success") !!}'); </script> @endif @if(\Session::has('error')) <script> toastr.options = { "closeButton": true, "debug": false, "newestOnTop": false, "progressBar": false, "positionClass": "toast-top-right", "preventDuplicates": false, "onclick": null, "showDuration": "300", "hideDuration": "1000", "timeOut": "5000", "extendedTimeOut": "1000", "showEasing": "swing", "hideEasing": "linear", "showMethod": "fadeIn", "hideMethod": "fadeOut" } toastr.error('{!! \Session::get("error") !!}'); </script> @endif @endsection
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка