Skip to content

Instantly share code, notes, and snippets.

View mohanklein's full-sized avatar

Mohan Klein mohanklein

View GitHub Profile
@mohanklein
mohanklein / ClosureTable.php
Created October 10, 2017 10:29
Closure Table Trait for Laravel Eloquent Models
<?php
namespace App\Models\Traits;
use Illuminate\Support\Facades\DB;
/**
* This trait keeps functionality to read & write hierarchical data from & into a closure table.
* IMPORTANT: In your model please set the variable $closure_table, e.g.
* protected $closure_table = 'destinations_tree';