このリポジトリは2025-08-22にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
ファイル
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);
}
}