1
0
forked from poc/pds

Added testing temp model file

This commit is contained in:
dhanabalan
2026-01-06 18:55:30 +05:30
parent 62272df783
commit 40889f8802

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class TestingTemp extends Model
{
use SoftDeletes;
protected $fillable = [
'name',
'created_at',
'updated_at',
'created_by',
'updated_by',
];
}