Some checks failed
tests / ci (pull_request) Has been cancelled
- Updated LecturerController to load multiple departments for lecturers. - Modified LecturerRequest to accept an array of department IDs instead of a single department ID. - Changed Department model to establish a many-to-many relationship with Lecturer. - Adjusted Lecturer model to reflect the new many-to-many relationship with Department. - Updated LecturerService to handle multiple departments during creation and updates. - Created LecturerFactory and StudentFactory for generating test data. - Added a migration for the new lecturer_department pivot table. - Refactored seeder classes to accommodate the new structure for lecturers and departments. - Enhanced frontend components for creating and editing lecturers to support multiple department selection.
38 lines
965 B
PHP
38 lines
965 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\BelongsToMany;
|
|
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(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Lecturer::class, 'lecturer_department');
|
|
}
|
|
|
|
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');
|
|
}
|
|
}
|