Skip to content

Commit d5283da

Browse files
committed
Fix readme indentation
1 parent 614e0ed commit d5283da

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -268,15 +268,15 @@ You may also specify additional columns to update:
268268

269269
When soft deleting a model, it is not actually removed from your database. Instead, a deleted_at timestamp is set on the record. To enable soft deletes for a model, apply the SoftDeletingTrait to the model:
270270

271-
use Jenssegers\Mongodb\Eloquent\SoftDeletingTrait;
271+
use Jenssegers\Mongodb\Eloquent\SoftDeletingTrait;
272272

273-
class User extends Eloquent {
273+
class User extends Eloquent {
274274

275-
use SoftDeletingTrait;
275+
use SoftDeletingTrait;
276276

277-
protected $dates = ['deleted_at'];
277+
protected $dates = ['deleted_at'];
278278

279-
}
279+
}
280280

281281
For more information check http://laravel.com/docs/eloquent#soft-deleting
282282

0 commit comments

Comments
 (0)