- Departments + cross-department transfer workflow - Role-based closing (staff→resolved, manager→closed) with proof_of_resolution - Private file storage with collection system + temporary signed URLs - Dashboard: resolved tickets table, stats, handler performance bar chart - Spatie RBAC (admin/manager/staff) - Notifications: TicketTransferred, TicketClosed (database + mail) - Pest tests: 8 tests, 21 assertions - Docker production-ready (Dockerfile + compose + entrypoint)
32 lines
797 B
PHP
32 lines
797 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
#[Fillable(['feedback_id', 'from_department_id', 'to_department_id', 'sender_id', 'reason'])]
|
|
class TicketTransferLog extends Model
|
|
{
|
|
public function feedback(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Feedback::class);
|
|
}
|
|
|
|
public function fromDepartment(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Department::class, 'from_department_id');
|
|
}
|
|
|
|
public function toDepartment(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Department::class, 'to_department_id');
|
|
}
|
|
|
|
public function sender(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'sender_id');
|
|
}
|
|
}
|