I am trying to implement soft deleting concept.
Here is my object:
class Post extends Eloquent { /** * The database table used by the model
Laravel 5.2.44 added withoutTrashed() method to SoftDeletingScope. For example you can use something like this:
withoutTrashed()
SoftDeletingScope
Post::withoutTrashed()->get();