pixelfed/app/Hashtag.php

28 wiersze
445 B
PHP
Czysty Zwykły widok Historia

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Hashtag extends Model
{
2018-08-28 03:07:36 +00:00
public $fillable = ['name', 'slug'];
public function posts()
{
2018-08-28 03:07:36 +00:00
return $this->hasManyThrough(
Status::class,
StatusHashtag::class,
'hashtag_id',
'id',
'id',
'status_id'
);
}
public function url()
{
2018-08-28 03:07:36 +00:00
return config('routes.hashtag.base').$this->slug;
}
}