view_student_proposal.blade.php 596 B

123456789101112131415161718
  1. @extends('modal_pages.base')
  2. @section('main')
  3. @if(file_exists( public_path().'/uploads/proposal/'.$proposal->document_file ) && $proposal->document_file != null)
  4. <iframe src ="{{url(asset('/uploads/proposal').'/'.$proposal->document_file) }}" type="application/pdf" width="100%" height="560px"></iframe>
  5. @else
  6. <iframe src ="web/files/CRM.pdf" type="application/pdf" width="100%" height="560px"></iframe>
  7. @endif
  8. <script>
  9. $(function(){
  10. // $('.select2').select2();
  11. $('#modal_page_footer').hide();
  12. });
  13. </script>
  14. @endsection