added leave request, profile and staff members controllers

This commit is contained in:
Kwesi Banson Jnr
2026-08-20 09:30:43 +00:00
parent 1c4d32833a
commit 81d26dc138
152 changed files with 1627 additions and 152101 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StaffDependent extends Model
{
protected $table = 'staff_dependents';
protected $guarded = [];
public function staff()
{
return $this->belongsTo(StaffMember::class, 'staff_id');
}
}