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
The best way for accomplishing this operation in Laravel 3 seems to be the use of the Fluent interface to truncate the table as shown below
Laravel 3
Fluent
DB::query("TRUNCATE TABLE mytable");