Hammad Ahmed
0
Q:

softdeletes laravel

/** in migrations this changes need to
    add for table we want to add soft delete (LARAVEL)*/

	/** The migrations. START */
	public function up()
	{
		Schema::table('users', function(Blueprint $table)
		{
			$table->softDeletes();
		});
	}
	/** The migrations. END */

	/** after adding softdelete you need to
    point that column in table related model (LARAVEL)*/

	/** The Model. START */
  	use Illuminate\Database\Eloquent\SoftDeletes;
  	class User extends Model {
	  use SoftDeletes;
	  protected $dates = ['deleted_at'];
	}
	/** The Model. END */
0
class Clientes extends Model{    use SoftDeletes;    protected $dates = ['deleted_at'];}
0
Schema::table('flights', function (Blueprint $table) {
    $table->softDeletes();
});
0

New to Communities?

Join the community