pixelfed/app/Newsroom.php

30 wiersze
557 B
PHP

2019-12-23 06:13:49 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Newsroom extends Model
{
protected $table = 'newsroom';
protected $fillable = ['title'];
2023-04-20 04:30:37 +00:00
protected $casts = [
'published_at' => 'datetime'
];
2019-12-23 06:13:49 +00:00
public function permalink()
{
$year = $this->published_at->year;
$month = $this->published_at->format('m');
$slug = $this->slug;
return url("/site/newsroom/{$year}/{$month}/{$slug}");
}
public function editUrl()
{
return url("/i/admin/newsroom/edit/{$this->id}");
}
2019-12-23 06:13:49 +00:00
}