Skip to content

Instantly share code, notes, and snippets.

@connor11528
Created May 26, 2019 23:13
Show Gist options
  • Select an option

  • Save connor11528/43765fdad156217fa51dca8e4c263472 to your computer and use it in GitHub Desktop.

Select an option

Save connor11528/43765fdad156217fa51dca8e4c263472 to your computer and use it in GitHub Desktop.
Render the file in the browser with Laravel Blade
<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