Truncate a table in Laravel 5

PhpLaravelLaravel 5Eloquent

Php Problem Overview


Description : I have a table full of tested data. Sometimes, I want to clear it out for new data. I can perform the truncate in the DBMS App like MySQL WorkBench, but I'm trying to achieve it within my application instead.


Goal : to make a button to truncate a table in a database when on click.


Here are my steps :

1 - Declare a route

Route::delete('visitor/truncate',array('as'=>'visitor.truncate', 'uses'=>'VisitorController@truncate'));

2 - Create a truncate function in my VisitorController

public function truncate()
{

    $visitors = Visitor::all();
    $visitors ->truncate();

    return View::make('visitors.index')
        ->with('success', 'Truncate Done');
}

3 - Create a button on my view

 {!! Form::model($visitors, array( 'route' => array('visitor.truncate'),'method' => 'DELETE')) !!}
          <button type="submit"  class="btn bgm-red btn-float waves-effect waves-effect waves-button waves-float"><i class="md md-remove"></i></button>
      {!! Form::close()!!}

4 - Test

When I click on it, it get into my truncate() function in my controller, but I keep getting this error

> Call to undefined method Illuminate\Database\Eloquent\Collection::truncate()


Do I need include anything to use truncate() ?

Any hints on that will be much appreciated !

Php Solutions


Solution 1 - Php

the following should work as well,

Visitor::truncate();

Solution 2 - Php

The truncate method is part of the Query Builder. However Visitor::all() returns a Collection instance. You need to build the query using the following:

Visitor::query()->truncate();

Solution 3 - Php

From the Laravel Docs

https://laravel.com/docs/5.6/queries#deletes says:

> If you wish to truncate the entire table, which will remove all rows > and reset the auto-incrementing ID to zero, you may use the truncate > method: > > DB::table('users')->truncate();

Solution 4 - Php

Laravel 8.0 docs

https://laravel.com/docs/8.x/queries#delete-statements

With query builder:

DB::table('users')->truncate();

And with model:

User::truncate();

Solution 5 - Php

another way if you dont have a model class for the table - Laravel 5.4

DB:connection(database connection name)->table(table name)->truncate();

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questioncode-8View Question on Stackoverflow
Solution 1 - PhpnasirkhanView Answer on Stackoverflow
Solution 2 - PhpBogdanView Answer on Stackoverflow
Solution 3 - PhpRyanView Answer on Stackoverflow
Solution 4 - PhpJsowaView Answer on Stackoverflow
Solution 5 - Phpitz_nsnView Answer on Stackoverflow