Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created February 4, 2018 19:45
Show Gist options
  • Save mitrallex/d4e9d50810ba0f8d8995bd8bb3fd126c to your computer and use it in GitHub Desktop.
Save mitrallex/d4e9d50810ba0f8d8995bd8bb3fd126c to your computer and use it in GitHub Desktop.
laravel-file-hosting
<div v-if="file.type == 'document'" class="document_block">
<figure class="image is-4by3">
<img src="{{ asset('images/document.png') }}" alt="Audio image" id="audio_image">
</figure>
<a class="button is-primary" href="" :href="'{{ asset('storage/' . Auth::user()->name . '_' . Auth::id()) }}' + '/' + file.type + '/' + file.name + '.' + file.extension" target="_blank">
<i class="fa fa-download" aria-hidden="true"></i>
&nbsp;Download
</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment