Skip to main content

akaunting/akaunting

9334 stars
1 code files
View akaunting/akaunting on GitHub

app/Models/Common/Widget.php

Open in GitHub
use App\Abstracts\Model;
 
class Widget extends Model
{
//
public function users()
{
return $this->hasManyThrough('App\Models\Auth\User', 'App\Models\Common\Dashboard');
}
//
}