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.
14 lines
215 B
PHTML
14 lines
215 B
PHTML
|
6 years ago
|
<?php
|
||
|
|
|
||
|
4 weeks ago
|
namespace App\Models;
|
||
|
6 years ago
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class StatusArchived extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
4 years ago
|
|
||
|
|
protected $guarded = [];
|
||
|
6 years ago
|
}
|