2018-04-19 05:55:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Comment extends Model
|
|
|
|
{
|
|
|
|
public function profile()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Profile::class);
|
2018-04-19 05:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function status()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Status::class);
|
2018-04-19 05:55:58 +00:00
|
|
|
}
|
|
|
|
}
|