Edit File: LogActivity.php
<?php namespace App\Models; class LogActivity extends BaseModel { protected $fillable = [ 'subject', 'url', 'method', 'ip', 'agent', 'admin_id', ]; public function admin() { return $this->belongsTo(admin::class, 'admin_id', 'id'); } }
Back to File Manager