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