Menambahkan fitur kirim email tender part 1
This commit is contained in:
18
app/Models/PenawaranEmailTenderLog.php
Normal file
18
app/Models/PenawaranEmailTenderLog.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Lpj\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
// use Modules\Lpj\Database\Factories\PenawaranEmailTenderLogFactory;
|
||||
|
||||
class PenawaranEmailTenderLog extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'penawaran_email_tender_log';
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $guarded = ['id'];
|
||||
}
|
||||
Reference in New Issue
Block a user