- Implemented LecturerEdit and LecturerIndex components for managing lecturers. - Created StudentCreate and StudentEdit components for adding and editing students. - Developed StudentIndex component for listing students with search and pagination. - Added department and user types for better type safety. - Updated routes for lecturers and students, including reset password functionality. - Removed AppSidebar from dashboard for a cleaner layout.
37 lines
872 B
PHP
37 lines
872 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
#[Guarded(['id'])]
|
|
class Department extends Model
|
|
{
|
|
use HasFactory, SoftDeletes;
|
|
|
|
public function lecturers(): HasMany
|
|
{
|
|
return $this->hasMany(Lecturer::class);
|
|
}
|
|
|
|
public function students(): HasMany
|
|
{
|
|
return $this->hasMany(Student::class);
|
|
}
|
|
|
|
public function leaderships(): HasMany
|
|
{
|
|
return $this->hasMany(DepartmentLeadership::class);
|
|
}
|
|
|
|
public function currentLeader(): HasOne
|
|
{
|
|
return $this->hasOne(DepartmentLeadership::class)->whereNull('ended_at');
|
|
}
|
|
}
|