diff --git a/laravel/str.php b/laravel/str.php index 68130042..b359cb17 100644 --- a/laravel/str.php +++ b/laravel/str.php @@ -296,7 +296,7 @@ public static function ascii($value) */ public static function classify($value) { - $search = array('_', '-', '.'); + $search = array('_', '-', '.', '/'); return str_replace(' ', '_', static::title(str_replace($search, ' ', $value))); }