koel/app/Models/Playlist.php

36 lines
780 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Models;
use App\Traits\CanFilterByUser;
2016-08-03 10:42:11 +00:00
use Illuminate\Database\Eloquent\Collection;
2015-12-14 13:22:39 +00:00
use Illuminate\Database\Eloquent\Model;
2017-08-05 18:55:02 +00:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
2015-12-13 04:42:28 +00:00
2016-08-03 10:42:11 +00:00
/**
* @property int $user_id
* @property Collection $songs
* @property int $id
2016-08-03 10:42:11 +00:00
*/
2015-12-13 04:42:28 +00:00
class Playlist extends Model
{
use CanFilterByUser;
protected $hidden = ['user_id', 'created_at', 'updated_at'];
protected $guarded = ['id'];
protected $casts = [
'user_id' => 'int',
];
2018-08-24 15:27:19 +00:00
public function songs(): BelongsToMany
2015-12-13 04:42:28 +00:00
{
return $this->belongsToMany(Song::class);
}
2018-08-24 15:27:19 +00:00
public function user(): BelongsTo
2015-12-13 04:42:28 +00:00
{
return $this->belongsTo(User::class);
}
}