+Bewertungen, Meistgewünschter Film, Sortierung nach Votes

This commit is contained in:
2013-09-27 04:06:12 +02:00
parent 521ecc46c1
commit fb74d68046
11 changed files with 264 additions and 20 deletions

14
app/models/News.php Normal file
View File

@@ -0,0 +1,14 @@
<?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);
}
}