Skip to content

Instantly share code, notes, and snippets.

@pavarov
Created April 13, 2021 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavarov/2365512fe801b617e7ca2684b89044d0 to your computer and use it in GitHub Desktop.
Save pavarov/2365512fe801b617e7ca2684b89044d0 to your computer and use it in GitHub Desktop.
Laravel. Cancel soft delete trait
<?php
declare(strict_types=1);
namespace App\Traits;
trait CancelSoftDelete
{
protected $forceDeleting = true;
public static function bootSoftDeletes(): void
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment