Pony.fm/app/PinnedPlaylist.php
2015-10-23 18:22:14 -07:00

20 lines
No EOL
362 B
PHP

<?php
namespace Poniverse\Ponyfm;
use Illuminate\Database\Eloquent\Model;
class PinnedPlaylist extends Model
{
protected $table = 'pinned_playlists';
public function user()
{
return $this->belongsTo('Poniverse\Ponyfm\User');
}
public function playlist()
{
return $this->belongsTo('Poniverse\Ponyfm\Playlist');
}
}