Kundesone/app/Models/Comment.php

19 lines
318 B
PHP
Raw Normal View History

2024-06-26 12:28:46 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Comment extends Model
{
use HasFactory;
protected $guarded = [];
public function user()
{
return $this->belongsTo(User::class, 'author', 'id');
}
}