Answers for "soft delete eloquent"

PHP
1

Laravel eloquent soft delete

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class Flight extends Model
{
    use SoftDeletes;
}
Posted by: Guest on May-14-2021
3

laravel soft delete

/** 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 */
Posted by: Guest on November-17-2020
0

laravel force delete

Product::onlyTrashed()->where('deleted_at', '<', Carbon::subDays(30))->forceDelete();
Posted by: Guest on December-27-2020
0

Laravel eloquent permanent soft delete

$flight->forceDelete();
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language