Skip to content

Instantly share code, notes, and snippets.

View beisong7's full-sized avatar
๐Ÿš€
Bring me the sky...

Benjamin Isong beisong7

๐Ÿš€
Bring me the sky...
View GitHub Profile
@beisong7
beisong7 / organization.php
Last active May 14, 2020 01:58
Laravel Eloquent hasManyThrough
public function staffs(){
return $this->belongsToMany(
Staff::class,
OrganizationStaff::class,
'organization_id',
'staff_id',
'uuid',
'uuid'
);
}