1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 10:39:08 +00:00
pixelfed/app/Contact.php

19 lines
278 B
PHP
Raw Normal View History

2019-06-05 22:31:25 -06:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Contact extends Model
{
public function user()
{
return $this->belongsTo(User::class);
}
2019-06-06 21:13:32 -06:00
public function adminUrl()
{
2019-06-18 19:49:31 -06:00
return url('/i/admin/messages/show/' . $this->id);
2019-06-06 21:13:32 -06:00
}
2019-06-05 22:31:25 -06:00
}