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 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 { public function up() { Schema::table('users', function(Blueprint $table) { $table->softDeletes(); }); } public function down() { Schema::table('users', function(Blueprint $table) { $table->dropSoftDeletes(); }); }}
Example 5: laravel migration table softdeletes
php artisan migrate