Пример #1
0
 public function createSlug($name, $id)
 {
     $slug = Str::slug($name);
     $index = 1;
     $baseSlug = $slug;
     while (Product::whereSlug($slug)->where('id', '!=', $id)->count() > 0) {
         $slug = $baseSlug . '-' . $index++;
     }
     return $slug;
 }