store/app/Models/PayrollAdjustment.php

94 lines
2.4 KiB
PHP

<?php
namespace App\Models;
use App\Enums\PayrollAdjustmentType;
use App\Models\Concerns\InteractsWithActivityLog;
use Illuminate\Database\Eloquent\Attributes\Appends;
use Illuminate\Database\Eloquent\Attributes\Guarded;
use Illuminate\Database\Eloquent\Attributes\Scope;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
#[Guarded(['id'])]
#[Appends(['amount_formatted', 'created_at_formatted', 'created_by_name', 'type_label'])]
class PayrollAdjustment extends Model
{
// 1. Use Trait
use HasFactory, InteractsWithActivityLog;
public $timestamps = false;
// 2. Casting
protected function casts(): array
{
return [
'amount' => 'integer',
'created_at' => 'datetime',
'type' => PayrollAdjustmentType::class,
];
}
// 3. Scope (grouped by column, then alphabetical)
// Column Group: type
#[Scope]
protected function bonus(Builder $query): void
{
$query->where('type', PayrollAdjustmentType::BONUS);
}
#[Scope]
protected function deduction(Builder $query): void
{
$query->where('type', PayrollAdjustmentType::DEDUCTION);
}
// 4. Attribute
public function amountFormatted(): Attribute
{
return Attribute::make(
get: fn () => 'Rp '.number_format($this->amount, 0, ',', '.'),
);
}
public function createdAtFormatted(): Attribute
{
return Attribute::make(
get: fn () => $this->created_at?->translatedFormat('l, d F Y H:i'),
);
}
public function createdByName(): Attribute
{
return Attribute::make(
get: fn () => $this->createdBy?->profile?->full_name ?? $this->createdBy?->username,
);
}
public function typeLabel(): Attribute
{
return Attribute::make(
get: fn () => $this->type?->label(),
);
}
// 5. Relation
public function attendance(): BelongsTo
{
return $this->belongsTo(Attendance::class);
}
public function createdBy(): BelongsTo
{
return $this->belongsTo(User::class, 'created_by_id')->withTrashed();
}
public function payroll(): BelongsTo
{
return $this->belongsTo(Payroll::class);
}
}