This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/app/models/News.php

14 lines
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);
}
}