88 lines
1.7 KiB
PHP
88 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Teknisi extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'teknisis';
|
|
|
|
/**
|
|
* The primary key associated with the table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = 'id_teknisi';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'nama',
|
|
'tanggal_lahir',
|
|
'alamat',
|
|
'email',
|
|
'no_telephone',
|
|
'tanggal_masuk',
|
|
'status',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'tanggal_lahir' => 'date',
|
|
'tanggal_masuk' => 'date',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for serialization.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $hidden = [];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'tanggal_lahir' => 'date',
|
|
'tanggal_masuk' => 'date',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Scope a query to only include active teknisi.
|
|
*/
|
|
public function scopeAktif($query)
|
|
{
|
|
return $query->where('status', 'aktif');
|
|
}
|
|
|
|
/**
|
|
* Scope a query to only include inactive teknisi.
|
|
*/
|
|
public function scopeTidakAktif($query)
|
|
{
|
|
return $query->where('status', 'tidak_aktif');
|
|
}
|
|
} |