Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
gambling
/
app
/
Models
:
SupportMessage.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class SupportMessage extends Model { public function ticket(){ return $this->belongsTo(SupportTicket::class, 'support_ticket_id', 'id'); } public function admin(){ return $this->belongsTo(Admin::class, 'admin_id', 'id'); } public function attachments() { return $this->hasMany(SupportAttachment::class,'support_message_id','id'); } }