36 lines
740 B
PHP
36 lines
740 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ImportEvent extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'import_id', 'user_id', 'event', 'level', 'message', 'context', 'import_row_id',
|
|
];
|
|
|
|
protected $casts = [
|
|
'context' => 'array',
|
|
];
|
|
|
|
public function import(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Import::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function row(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ImportRow::class, 'import_row_id');
|
|
}
|
|
}
|