Setting up xdebug on development server Install xdebug sudo apt-get install php-xdebug Edit xdebug.ini This step might not be 100% necessary but I'm including it because it's one of the things I did in the process.
Create the Migration <?php public function change() { $this->table('table_name')->addColumn('deleted_at', 'datetime', ['null' => true])->save(); } Add the Listener