website/app/Fieldprotocol/Music/Song.php
2016-04-20 22:39:03 -04:00

23 lines
336 B
PHP

<?php
namespace Fieldprotocol\Music;
use Illuminate\Database\Eloquent\Model as Eloquent;
class Song extends Eloquent {
protected $table = 'songs';
protected $fillable = [
'title',
'album_id',
'track_order',
'audio_file',
];
public function album() {
return $this->belongsTo('FieldProtocol\Music\Album');
}
}