67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Attributes\Appends;
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Spatie\MediaLibrary\HasMedia;
|
|
use Spatie\MediaLibrary\InteractsWithMedia;
|
|
|
|
#[Appends(['formatted_attendance_date', 'formatted_check_in_at', 'formatted_check_out_at'])]
|
|
#[Guarded(['id'])]
|
|
class Attendance extends Model implements HasMedia
|
|
{
|
|
use HasFactory, InteractsWithMedia;
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'attendance_date' => 'date:Y-m-d',
|
|
'check_in_at' => 'datetime',
|
|
'check_out_at' => 'datetime',
|
|
'check_in_latitude' => 'decimal:7',
|
|
'check_in_longitude' => 'decimal:7',
|
|
'check_out_latitude' => 'decimal:7',
|
|
'check_out_longitude' => 'decimal:7',
|
|
'work_duration_minutes' => 'integer',
|
|
];
|
|
}
|
|
|
|
protected function formattedAttendanceDate(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->attendance_date?->translatedFormat('l, d F Y'),
|
|
);
|
|
}
|
|
|
|
protected function formattedCheckInAt(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->check_in_at?->translatedFormat('l, d F Y H:i'),
|
|
);
|
|
}
|
|
|
|
protected function formattedCheckOutAt(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->check_out_at?->translatedFormat('l, d F Y H:i'),
|
|
);
|
|
}
|
|
|
|
public function employee(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Employee::class);
|
|
}
|
|
|
|
public function payrollAdjustments(): HasMany
|
|
{
|
|
return $this->hasMany(PayrollAdjustment::class);
|
|
}
|
|
}
|