Created
May 26, 2019 23:13
-
-
Save connor11528/43765fdad156217fa51dca8e4c263472 to your computer and use it in GitHub Desktop.
Render the file in the browser with Laravel Blade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="row"> | |
| <div class="col-12"> | |
| @if(!empty($candidate->resume_file_path)) | |
| <iframe src="https://s3-us-west-1.amazonaws.com/employbl-production/{{$candidate->resume_file_path}}" | |
| width="800px" height="600px"></iframe> | |
| @else | |
| <p class="text-danger">{{ $candidate->first_name }} has not uploaded a resume yet</p> | |
| @endif | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment