Files
ERP-upgrade/app/Models/StaffMember.php
2026-09-08 08:01:08 +00:00

43 lines
1.2 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class StaffMember extends Authenticatable
{
use HasFactory, Notifiable;
// 1. Explicitly define the custom table name
protected $table = 'staff_members';
// 2. Define the fillable fields based on your schema
protected $guarded = ['id'];
// 3. Hide the password from array/JSON conversions
protected $hidden = [
'password',
];
public function leaveRequests() {
return $this->hasMany(LeaveRequest::class, 'staff_member_id');
}
public function dependents() {
return $this->hasMany(StaffDependent::class, 'staff_id');
}
public function dailyReports() {
return $this->hasMany(DailyReport::class, 'user_id');
}
public function department(){
return $this->hasOne('App\Models\Department', 'id', 'department_id');
}
// 4. Cast dates correctly
protected $casts = [
// 'dob' => 'date',
'hire_date' => 'datetime',
'password' => 'hashed', // Laravel 10+ password casting
];
}