22 lines
318 B
PHP
22 lines
318 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',
|
||
|
];
|
||
|
|
||
|
public function album() {
|
||
|
return $this->belongsTo('FieldProtocol\Music\Album');
|
||
|
}
|
||
|
|
||
|
}
|