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/Comment.php
2014-11-25 18:10:56 +01:00

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