Skip to content

Commit 1f32683

Browse files
authored
Merge pull request #1 from matthewscalf/8.x-eloquent-soft-delete-schema-facade-correction
Correcting Schema Facade path under Soft Deletes.
2 parents 0fb9e12 + aa944d0 commit 1f32683

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eloquent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ In addition to actually removing records from your database, Eloquent can also "
801801
You should also add the `deleted_at` column to your database table. The Laravel [schema builder](/docs/{{version}}/migrations) contains a helper method to create this column:
802802

803803
use Illuminate\Database\Schema\Blueprint;
804-
use Illuminate\Facades\Schema;
804+
use Illuminate\Support\Facades\Schema;
805805

806806
Schema::table('flights', function (Blueprint $table) {
807807
$table->softDeletes();

0 commit comments

Comments
 (0)