Skip to content

Instantly share code, notes, and snippets.

@loburets
Last active July 26, 2017 13:01
Show Gist options
  • Save loburets/8b944ec61dbbfb6008d25da528b84cb0 to your computer and use it in GitHub Desktop.
Save loburets/8b944ec61dbbfb6008d25da528b84cb0 to your computer and use it in GitHub Desktop.
Embed video from youtube via link parsing
@if(preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $link, $match))
<iframe type="text/html"
src="https://www.youtube.com/embed/{!! $match[1] !!}?rel=0&showinfo=0&color=white&iv_load_policy=3"
frameborder="0" allowfullscreen></iframe>
@elseif (!empty($link))
<a href="{!! $link !!}">Video</a>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment