<?php namespace App\Items; class Video implements Item { private $url; public function __construct($url) { $this->url = $url; } public function getWidget() { preg_match('/^https:\/\/www\.youtube\.com\/watch\?v=([A-Za-z0-9\-\_]*)&?.*/', $this->url, $matches); return '<iframe width="100%" height="400" src="//www.youtube.com/embed/' . $matches[1] . '" frameborder="0" allowfullscreen></iframe>';; } }