Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created February 1, 2018 20:52
Show Gist options
  • Save mitrallex/942a5992abba5dcec9f6bc3a7d00f172 to your computer and use it in GitHub Desktop.
Save mitrallex/942a5992abba5dcec9f6bc3a7d00f172 to your computer and use it in GitHub Desktop.
laravel-file-hosting
<div class="modal" :class="{'is-active' : modalActive}">
<div class="modal-background" @click="closeModal()"></div>
<div class="modal-content">
<p class="image is-4by3">
<img src="" :src="'{{ asset('storage/' . Auth::user()->name . '_' . Auth::id()) }}' + '/' + file.type + '/' + file.name + '.' + file.extension" :alt="file.name">
</p>
</div>
<button class="modal-close is-large" aria-label="close" @click="closeModal()"></button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment