This commit is contained in:
2024-11-29 15:58:22 +05:00
parent 5b7147c1e7
commit c7ceaf6556
3 changed files with 6 additions and 2 deletions

View File

@@ -9,7 +9,6 @@ use Illuminate\Database\Eloquent\SoftDeletes;
class IncomingLetterModule implements ModuleContract
{
use Makeable;
use SoftDeletes;
/**
* Module is enabled

View File

@@ -3,5 +3,9 @@
namespace App\Modules\IncomingLetter\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class IncomingLetter extends Model {}
class IncomingLetter extends Model
{
use SoftDeletes;
}