View file ProForum/Files/application/app/Models/NotificationLog.php

File size: 188B
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class NotificationLog extends Model
{
    public function user(){
    	return $this->belongsTo(User::class);
    }
}