Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created August 10, 2021 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/a9cc08f95c637f81dcc43e3c2a9492e5 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/a9cc08f95c637f81dcc43e3c2a9492e5 to your computer and use it in GitHub Desktop.
<?php
public function sluggable(): array
{
return [
'name-slug' => [
'source' => 'name'
],
'user-slug' => [
'source' => ['user.lastname', 'user.firstname'],
'separator' => '_'
],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment