-
-
Save josemiguelq/fd1c68c0ed1748fc50d2591d5d6a440c to your computer and use it in GitHub Desktop.
A model trait that allows child models to use parent table names and relationship keys.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Abilities; | |
use Illuminate\Support\Str; | |
use ReflectionClass; | |
/** | |
* Note: This is a preview of an upcoming package from Tighten. | |
**/ | |
trait HasParentModel | |
{ | |
public function getParentClass() | |
{ | |
static $parentClassName; | |
return $parentClassName ?: $parentClassName = (new ReflectionClass($this))->getParentClass()->getName(); | |
} | |
public function getTable() | |
{ | |
if (! isset($this->table)) { | |
return str_replace('\\', '', Str::snake(Str::plural(class_basename($this->getParentClass())))); | |
} | |
return $this->table; | |
} | |
public function getForeignKey() | |
{ | |
return Str::snake(class_basename($this->getParentClass())).'_'.$this->primaryKey; | |
} | |
public function joiningTable($related) | |
{ | |
$models = [ | |
Str::snake(class_basename($related)), | |
Str::snake(class_basename($this->getParentClass())), | |
]; | |
sort($models); | |
return strtolower(implode('_', $models)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment