如何在我的Laravel 5应用程序中使用Illuminate\Support\Str::slug?
我正在执行以下操作
public function boot(DispatcherContract $events)
{
parent::boot($events);
// set Tag slug
Tag::saving(function($tag)
{
//slugify name
$tag->slug = Str::slug($tag->name);
});
}
当我在修补器中运行它时,我收到以下错误:
PHP Fatal error: Class 'App\Providers\Str' not found in /var/www/questions-l5/app/Providers/EventServiceProvider.php on line 35
..但我不知道Laravel如何导入它。我需要只使用吗,我试图将以下内容添加到config/app.php文件中:use
'aliases' => [
...
'Str' => 'Illuminate\Support\Str',
..虽然似乎没有太大的区别。
http://chrishayes.ca/blog/code/laravel-4-generating-unique-slugs-elegantly http://laravel.com/api/5.0/Illuminate/Support/Str.html