Skip to content

Instantly share code, notes, and snippets.

@dillingham
Created September 14, 2018 22:40
Show Gist options
  • Save dillingham/fd8a03332515a7dd7f85248546190ec1 to your computer and use it in GitHub Desktop.
Save dillingham/fd8a03332515a7dd7f85248546190ec1 to your computer and use it in GitHub Desktop.
<?php

namespace App\Nova;

class User extends Resource
{
    public static $model = 'App\\User';
    
    public static function newModel()
    {
        return static::$model::withoutGlobalScope('scope-name');
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment