My guess was to use the following syntax:
MyModel::all()->delete();
But that did not work. I\'m sure it\'s super simple, but I\'ve searched
You can try this one-liner which preserves soft-deletes also:
Model::whereRaw('1=1')->delete();