Skip to content

Commit 181171a

Browse files
committed
Create ProductSoftDelete.php
1 parent 78e2707 commit 181171a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)