diff --git a/app/Models/Location.php b/app/Models/Location.php index 5971544..7ae2c95 100644 --- a/app/Models/Location.php +++ b/app/Models/Location.php @@ -4,10 +4,12 @@ namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; +use Illuminate\Database\Eloquent\SoftDeletes; class Location extends Model { use HasFactory; + use SoftDeletes; /** * The table associated with the model. @@ -29,6 +31,7 @@ class Location extends Model "added_by", "tags", "block_count", + "silence_count", "created_at", "updated_at" ];