此儲存庫已於 2025-08-22 封存。您可以查看檔案並進行 Clone,但無法推送或開啟問題或合併請求。
Files
dumbo/app/models/News.php

14 行
249 B
PHP

<?php
class News extends Eloquent {
protected $table = "news";
public function ersteller() {
return $this->belongsTo('User', 'author');
}
public function scopeAktuell($query) {
return $query->orderBy('updated_at', 'DESC')->take(5);
}
}