31 lines
514 B
PHP
31 lines
514 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Leave extends Model
|
|
{
|
|
protected $table = 'cuti';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'jenis_cuti',
|
|
'tanggal_mulai',
|
|
'tanggal_selesai',
|
|
'keterangan',
|
|
'file_pdf',
|
|
'status'
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function employee()
|
|
{
|
|
return $this->belongsTo(Employee::class, 'emp_id');
|
|
}
|
|
}
|