46 lines
872 B
PHP
46 lines
872 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class FormUpCountry extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'form_up_country';
|
|
protected $fillable = [
|
|
'expense_number',
|
|
'user_id',
|
|
'rayon_id',
|
|
'tanggal',
|
|
'tujuan',
|
|
'jarak',
|
|
'allowance',
|
|
'transport_dalkot',
|
|
'transport_ankot',
|
|
'hotel',
|
|
'total',
|
|
'bukti1',
|
|
'bukti2',
|
|
'bukti3',
|
|
'account_number',
|
|
'status',
|
|
'approved_at',
|
|
'approved_by',
|
|
'final_approved_at',
|
|
'final_approved_by',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('App\Models\Admin');
|
|
}
|
|
|
|
public function rayon()
|
|
{
|
|
return $this->belongsTo('App\Models\Rayon');
|
|
}
|
|
}
|