Dieses Repository wurde am 2025-08-22 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
Files
dumbo/app/models/Comment.php
2014-11-25 18:10:56 +01:00

17 Zeilen
351 B
PHP

<?php
class Comment extends Eloquent {
protected $table = "comments";
public function autor() {
return $this->belongsTo('User', 'user');
}
public function objekt() {
return $this->belongsTo('Film', 'film');
}
public function scopeNeueste($query) {
return $query->orderBy('updated_at', 'DESC')->where('bewertung', '<', 1)->take(5);
}
}