| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\BelongsTo;
- class ImportLog extends Model
- {
- protected $fillable = [
- 'type',
- 'user_id',
- 'total',
- 'created',
- 'updated',
- 'inactivated',
- 'imported_at',
- ];
- protected $casts = [
- 'imported_at' => 'datetime',
- ];
- public function user(): BelongsTo
- {
- return $this->belongsTo(User::class);
- }
- }
|