Menambahkan fitur kirim email tender part 1

This commit is contained in:
2024-11-20 08:24:59 +07:00
parent 7db25c2226
commit 17ca3b2e50
18 changed files with 1554 additions and 25 deletions

View 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'];
}