Edit File: LogActivity.php
<?php namespace App\Models; use App\Traits\ModelTrait; use Illuminate\Database\Eloquent\Relations\BelongsTo; class LogActivity extends BaseModel { use ModelTrait; protected $fillable = [ 'subject', 'url', 'method', 'ip', 'agent', 'admin_id', ]; /** * Get the admin that owns the LogActivity * * @return BelongsTo */ public function admin(): BelongsTo { return $this->belongsTo(admin::class, 'admin_id', 'id'); } }
Back to File Manager