forked from admin/services_core
18 lines
308 B
PHP
18 lines
308 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserNotification extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return ['read_at' => 'datetime'];
|
|
}
|
|
|
|
public function user() { return $this->belongsTo(User::class); }
|
|
}
|