Your ROOT_URL in app.ini is http://167.99.32.63:3000/ but you are visiting http://167.99.32.63/ibrahim/BAGETWEBPANEL/src/branch/KARATAS/app/Models/Message.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 

27 lines
523 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Message extends Model
{
use HasFactory;
protected $casts = [
'conversation_id' => 'integer',
'sender_id' => 'integer',
'is_seen' => 'integer'
];
public function sender()
{
return $this->belongsTo(UserInfo::class, 'sender_id');
}
public function conversation()
{
return $this->belongsTo(Conversation::class);
}
}