ctrlpanel/app/Models/TicketComment.php

28 lines
475 B
PHP
Raw Normal View History

2022-08-01 16:52:16 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TicketComment extends Model
{
protected $fillable = [
'ticket_id', 'user_id', 'ticketcomment',
];
2022-08-01 16:52:16 +00:00
public function ticketcategory()
{
return $this->belongsTo(TicketCategory::class);
}
2022-08-01 16:52:16 +00:00
public function ticket()
{
return $this->belongsTo(Ticket::class);
}
2022-08-01 16:52:16 +00:00
public function user()
{
return $this->belongsTo(User::class);
}
2022-08-01 16:52:16 +00:00
}