-
app/Models/ExternalCourse.php
Open in GitHubuse Illuminate\Database\Eloquent\Builder; class ExternalCourse extends Course { // protected static function boot() { parent::boot(); static::addGlobalScope('external', function (Builder $builder) { $builder->where('campus_id', 2); }); } // }