PHP code example of pellesam / laravel-cascade-soft-delete-and-restore
1. Go to this page and download the library: Download pellesam/laravel-cascade-soft-delete-and-restore library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pellesam / laravel-cascade-soft-delete-and-restore example snippets
namespace App;
use App\Comment;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Post extends Model
{
use SoftDeletes, CascadeSoftDeleteAndRestore;
protected $cascadeRelations = ['comments'];
protected $dates = ['deleted_at'];
public function comments()
{
return $this->hasMany(Comment::class);
}
}
$post = App\Post::find($postId)
$post->delete(); // Soft delete the post, which will also trigger the delete() method on any comments and their children.