Skip to content

Instantly share code, notes, and snippets.

View VvanGemert's full-sized avatar

Vincent VvanGemert

View GitHub Profile
@VvanGemert
VvanGemert / eloquent_soft.php
Last active December 14, 2015 06:38
Sample how to use soft delete with Eloquent in Laravel PHP framework. Description of how to use can be found in the example. I've used Laravel 3.2.13.
<?php
// Extending Eloquent to support Soft Delete
abstract class EloquentSoft extends Eloquent {
public $soft_deletable = false;
public function delete()
{