Skip to content

Instantly share code, notes, and snippets.

@robozavri
Created July 30, 2018 09:04
Show Gist options
  • Select an option

  • Save robozavri/0d3d1da4b3c2b94039e941d5b78ab208 to your computer and use it in GitHub Desktop.

Select an option

Save robozavri/0d3d1da4b3c2b94039e941d5b78ab208 to your computer and use it in GitHub Desktop.
laraadmin laravel get tags accessor
// სადმე მოდელში
public function gettagsAttribute($value){
$tags = explode(',',str_replace(array('[',']','"'), '',$value));
return implode(',', $tags);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment