このリポジトリは2025-08-22にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
ファイル
dumbo/app/models/Comment.php
2013-11-09 21:23:58 +01:00

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