Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active March 7, 2026 17:54
Show Gist options
  • Select an option

  • Save vielhuber/260eec605196d2f9f83b86c781345a18 to your computer and use it in GitHub Desktop.

Select an option

Save vielhuber/260eec605196d2f9f83b86c781345a18 to your computer and use it in GitHub Desktop.
get class model name of object #laravel #php
<?php
get_class($obj) // App\Models\Foo
class_basename($obj) // Foo
(new ReflectionClass($obj))->getShortName() // Foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment