Skip to content

Instantly share code, notes, and snippets.

@mykeels
Created April 17, 2018 09:44
Show Gist options
  • Select an option

  • Save mykeels/df13807cf105d0f92d6d4eaa3fa22d5b to your computer and use it in GitHub Desktop.

Select an option

Save mykeels/df13807cf105d0f92d6d4eaa3fa22d5b to your computer and use it in GitHub Desktop.
A trait that adds a static `name()` method to Laravel Models
<?php
namespace App\Traits;
trait ModelTableNameTrait
{
public static function name() {
return with(new static)->getTable();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment