Skip to content

Instantly share code, notes, and snippets.

View Mutembeijoe's full-sized avatar
🎯
Focusing

Joe Mutembeijoe

🎯
Focusing
View GitHub Profile
@joaorbrandao
joaorbrandao / SelfReferenceTrait.php
Last active September 13, 2024 19:02
Laravel Model Self Reference
<?php
namespace App\Traits;
trait SelfReferenceTrait
{
protected $parentColumn = 'parent_id';
public function parent()
{