ctrlpanel/app/Models/TicketComment.php

21 lines
421 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'
];
public function ticketcategory(){
return $this->belongsTo(TicketCategory::class);}
public function ticket(){
return $this->belongsTo(Ticket::class);}
public function user(){
return $this->belongsTo(User::class);}
}