2024-12-11 12:29:55 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
|
|
class FormMeetingSeminar extends Model
|
|
|
|
|
{
|
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
|
|
protected $table = 'form_meeting_seminar';
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'expense_number',
|
|
|
|
|
'user_id',
|
2025-03-04 15:20:23 +07:00
|
|
|
'tanggal',
|
2024-12-11 12:29:55 +07:00
|
|
|
'allowance',
|
|
|
|
|
'transport_ankot',
|
|
|
|
|
'hotel',
|
|
|
|
|
'total',
|
2025-01-02 17:59:33 +07:00
|
|
|
'approved_allowance',
|
|
|
|
|
'approved_transport_ankot',
|
|
|
|
|
'approved_hotel',
|
|
|
|
|
'approved_total',
|
2025-01-04 13:16:00 +07:00
|
|
|
'bukti_allowance',
|
|
|
|
|
'bukti_transport_ankot',
|
|
|
|
|
'bukti_hotel',
|
2024-12-11 12:29:55 +07:00
|
|
|
'account_number',
|
|
|
|
|
'status',
|
2025-10-12 20:47:43 +07:00
|
|
|
'remarks',
|
2024-12-23 10:10:09 +07:00
|
|
|
'approved_at',
|
2025-01-16 15:56:22 +07:00
|
|
|
'approved2_at',
|
2024-12-23 10:10:09 +07:00
|
|
|
'approved_by',
|
2025-01-16 15:56:22 +07:00
|
|
|
'approved2_by',
|
2024-12-23 10:10:09 +07:00
|
|
|
'final_approved_at',
|
|
|
|
|
'final_approved_by',
|
2024-12-11 12:29:55 +07:00
|
|
|
];
|
2024-12-19 10:51:27 +07:00
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Admin::class, 'user_id');
|
|
|
|
|
}
|
2025-10-13 10:55:21 +07:00
|
|
|
|
|
|
|
|
public function attachments()
|
|
|
|
|
{
|
|
|
|
|
return $this->hasMany(\App\Models\AttachmentForm::class, 'form_id')
|
|
|
|
|
->where('table_name', \App\Enums\AttachmentTableName::FORM_MEETING_SEMINAR);
|
|
|
|
|
}
|
2024-12-11 12:29:55 +07:00
|
|
|
}
|