We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e2707 commit 181171aCopy full SHA for 181171a
tests/SetUp/Models/ProductSoftDelete.php
@@ -0,0 +1,17 @@
1
+<?php
2
+
3
+namespace Tests\SetUp\Models;
4
5
+use Binafy\LaravelUserMonitoring\Traits\Actionable;
6
+use Illuminate\Database\Eloquent\Factories\HasFactory;
7
+use Illuminate\Database\Eloquent\Model;
8
+use Illuminate\Database\Eloquent\SoftDeletes;
9
10
+class ProductSoftDelete extends Model
11
+{
12
+ use HasFactory, Actionable, SoftDeletes;
13
14
+ protected $guarded = [];
15
16
+ protected $table = 'products';
17
+}
0 commit comments