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
2013-11-09 21:23:58 +01:00

17 lines
323 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')->take(5);
}
}