????
Current Path : /home/thenclexdoctor.com/.trash/app/Models/ |
Current File : /home/thenclexdoctor.com/.trash/app/Models/SupportConversation.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class SupportConversation extends Model { protected $table = 'support_conversations'; public $timestamps = false; protected $dateFormat = 'U'; protected $guarded = ['id']; public function sender() { return $this->belongsTo('App\User', 'sender_id', 'id'); } public function supporter() { return $this->belongsTo('App\User', 'supporter_id', 'id'); } }
Sorry, this page is not available...