- Menambahkan validasi dan atribut 'nominal_bayar' pada request dan model. - Menampilkan input 'nominal_bayar' di form persetujuan penawaran. - Memperbarui tampilan dan data tabel untuk mendukung kolom 'nominal_bayar'.
57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Modules\Usermanagemenet\Models\User;
|
|
|
|
class PersetujuanPenawaran extends Base
|
|
{
|
|
|
|
protected $table = 'persetujuan_penawaran';
|
|
|
|
protected $fillable = [
|
|
'penawaran_id',
|
|
'nomor_proposal_penawaran',
|
|
'tanggal_proposal_penawaran',
|
|
'biaya_final',
|
|
'sla_resume',
|
|
'sla_final',
|
|
'file_persetujuan_penawaran',
|
|
'surat_representasi',
|
|
'bukti_bayar',
|
|
'nominal_bayar',
|
|
'status',
|
|
'authorized_status',
|
|
'authorized_at',
|
|
'authorized_by',
|
|
'status',
|
|
'catatan',
|
|
];
|
|
|
|
protected $casts = [
|
|
'tanggal_proposal_penawaran' => 'date',
|
|
'biaya_final' => 'decimal:2',
|
|
'status' => 'boolean',
|
|
'authorized_status' => 'boolean',
|
|
'authorized_at' => 'datetime',
|
|
];
|
|
|
|
// Relationship with Penawaran
|
|
public function penawaran()
|
|
{
|
|
return $this->belongsTo(PenawaranTender::class, 'penawaran_id');
|
|
}
|
|
|
|
// Relationship with Region
|
|
public function region()
|
|
{
|
|
return $this->belongsTo(Region::class);
|
|
}
|
|
|
|
// Relationship with User (for authorized_by)
|
|
public function authorizedBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'authorized_by');
|
|
}
|
|
}
|