- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Database\Factories\JobAuditFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class JobAudit extends Model
|
|
{
|
|
/** @use HasFactory<JobAuditFactory> */
|
|
use HasFactory;
|
|
|
|
const UPDATED_AT = null;
|
|
|
|
protected $fillable = [
|
|
'job_id',
|
|
'user_id',
|
|
'action',
|
|
'old_values',
|
|
'new_values',
|
|
'ip_address',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'old_values' => 'array',
|
|
'new_values' => 'array',
|
|
'created_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
public function save(array $options = []): bool
|
|
{
|
|
if ($this->exists) {
|
|
throw new \LogicException('JobAudit records are insert-only and cannot be updated.');
|
|
}
|
|
|
|
return parent::save($options);
|
|
}
|
|
|
|
public function job(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Job::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|