在Laravel VIA Composer中安装包

时间:2015-04-22 16:26:40

标签: laravel-4

我目前正在为我的项目使用laravel 4,我下载了一个将youtube / vimeo url转换为embed的软件包,我需要我的作曲家中的软件包并运行作曲家更新。

但是现在我正在尝试使用此软件包,但我一直收到错误:

Class 'Embed' not found 

此代码位于我的 helpers.php 文件中:

function embed_video($url, $width = 0, $height = 0)
{
    $embed = Embed::make($url)->parseUrl();

    if ($embed) {
        // Set width of the embed.
        if ($width > 0)
        {
            $embed->setAttribute(['width' => $width]);
        }

        // Set height of the embed.
        if ($height > 0)
        {
            $embed->setAttribute(['height' => $height]);
        }

        return $embed->getHtml();
    }

}

我在我看来称这个功能 这是包裹的链接:cohensive

0 个答案:

没有答案