mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
226 B
PHTML
16 lines
226 B
PHTML
|
8 years ago
|
<?php
|
||
|
|
|
||
|
4 weeks ago
|
namespace App\Models;
|
||
|
8 years ago
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class ReportLog extends Model
|
||
|
|
{
|
||
|
4 years ago
|
protected $guarded = [];
|
||
|
|
|
||
|
9 months ago
|
public function profile()
|
||
|
|
{
|
||
|
|
return $this->belongsTo(Profile::class);
|
||
|
|
}
|
||
|
8 years ago
|
}
|