laravel soft delete migration code example

Example 1: laravel migration table softdeletes

$ php artisan make:migration add_soft_deletes_to_user_table --table="users"}

Example 2: delete a migration laravel

// delete a migration safely from laravel 
delete migration from database/migrations/ directory
and also delete entry from migrations table

Example 3: laravel migration table softdeletes

use Illuminate\Database\Eloquent\SoftDeletes;class User extends Model {use SoftDeletes;    protected $dates = ['deleted_at'];}

Example 4: laravel migration table softdeletes

use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class AddSoftDeletesToUserTable extends Migration {/**  * Run the migrations.  *  * @return void  */ public function up() {    Schema::table('users', function(Blueprint $table)    {       $table->softDeletes();    }); }/**  * Reverse the migrations.  *  * @return void  */ public function down() {  Schema::table('users', function(Blueprint $table)  {       $table->dropSoftDeletes();  }); }}

Example 5: laravel migration table softdeletes

php artisan migrate

Tags:

Php Example