mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 14:37:59 +01:00
18 lines
No EOL
299 B
PHP
18 lines
No EOL
299 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PinnedPlaylist extends Model
|
|
{
|
|
protected $table = 'pinned_playlists';
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
|
|
public function playlist()
|
|
{
|
|
return $this->belongsTo('Playlist');
|
|
}
|
|
} |