Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created February 4, 2018 19:44
Show Gist options
  • Save mitrallex/b501995305970170ec9cb12e2e9100be to your computer and use it in GitHub Desktop.
Save mitrallex/b501995305970170ec9cb12e2e9100be to your computer and use it in GitHub Desktop.
laravel-file-hosting
<div v-if="file.type == 'video'" class="video_block">
<video controls>
<source src="" :src="'{{ asset('storage/' . Auth::user()->name . '_' . Auth::id()) }}' + '/' + file.type + '/' + file.name + '.' + file.extension" :type="'video/' + file.extension">
Your browser does not support the video tag.
</video>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment