Add DirectMessage model

This commit is contained in:
Daniel Supernault 2018-10-17 12:21:39 -06:00
parent f82024d2f8
commit 0fba6e16a7
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

29
app/DirectMessage.php Normal file
View file

@ -0,0 +1,29 @@
<?php
namespace App;
use Auth;
use Illuminate\Database\Eloquent\Model;
class DirectMessage extends Model
{
public function status()
{
return $this->hasOne(Status::class, 'id', 'status_id');
}
public function url()
{
return url('/i/message/' . $this->to_id . '/' . $this->id);
}
public function author()
{
return $this->hasOne(Profile::class, 'id', 'from_id');
}
public function me()
{
return Auth::user()->profile->id === $this->from_id;
}
}