fix:修复Laravel丢弃的接口

This commit is contained in:
JaguarJack
2024-03-14 12:17:32 +08:00
parent 70a47e35ec
commit 439d897038
2 changed files with 8 additions and 8 deletions

View File

@@ -130,6 +130,7 @@ use Catch\Traits\DB\BaseOperate;
use Catch\Traits\DB\ScopeTrait;
use Catch\Traits\DB\Trans;
use Illuminate\Database\Eloquent\Model;
use Catch\Traits\DB\WithAttributes;
Text;
} else {
return <<<Text
@@ -145,7 +146,7 @@ Text;
*/
protected function getTraits(): string
{
return $this->softDelete ? '' : 'use BaseOperate, Trans, ScopeTrait;';
return $this->softDelete ? '' : 'use WithAttributes, BaseOperate, Trans, ScopeTrait;';
}
/**