Guest User

Untitled

a guest
Jul 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. 'slug' => 'unique:slugs,slug,id,morph_type,AppModelsProductCategory',
  2.  
  3. 'slug' => 'unique:slugs,slug,id,morph_type,AppModelsProductCategory,morph_id,'.$category->id
  4.  
  5. 'slug' => [
  6. Rule::unique('slugs', 'slug')
  7. ->where('morph_type', 'AppModelsProductCategory')
  8. ->where('morph_id', '<>', $category->id)
  9.  
  10. ],
Add Comment
Please, Sign In to add comment