website/app/Fieldprotocol/Music/Album.php
2016-04-20 21:53:00 -04:00

23 lines
338 B
PHP

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