You've already forked Epicnabbo-Catalogus-Updated-Daily
20 lines
313 B
PHP
20 lines
313 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AuthorNotification extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
public $timestamps = true;
|
|
|
|
protected $table = 'author_notifications';
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|