We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
// Deps use App;
With this
// Deps use Illuminate\Support\Facades\App;
The text was updated successfully, but these errors were encountered:
Make sure you have this line in your Laravel application.
Sorry, something went wrong.
Of course i have alias for the App. Else where in project working like charm, only in here has a problem with it.
No branches or pull requests
In Laravel 7 when i call the duplicate method the error happen:
The error happen because the App used note the Facade
Need to replace this line in Cloneable trait:
With this
The text was updated successfully, but these errors were encountered: