0 votes
in Laravel by
Differentiate between delete() and softDeletes().

1 Answer

0 votes
by

delete(): remove all record from the database table.

softDeletes(): It does not remove the data from the table. It is used to flag any record as deleted.

...