In Laravel 7 when i call the duplicate method the error happen:
Non-static method Illuminate\Foundation\Application::make() should not be called statically
The error happen because the App used note the Facade
Need to replace this line in Cloneable trait:
With this
// Deps
use Illuminate\Support\Facades\App;