website/app/Fieldprotocol/Music/Album.php

27 lines
428 B
PHP
Raw Normal View History

2016-04-20 21:53:00 -04:00
<?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() {
2016-04-21 00:00:28 -04:00
return $this->hasMany('Fieldprotocol\Music\Song');
2016-04-20 21:53:00 -04:00
}
2016-11-29 11:43:11 -05:00
public function releaseYear() {
return date('%Y', strtotime($this->release_date));
}
2016-04-20 21:53:00 -04:00
}