mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
46 lines
1 KiB
PHP
46 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\CanFilterByUser;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* @property int $user_id
|
|
* @property Collection $songs
|
|
* @property int $id
|
|
* @property array $rules
|
|
* @property bool $is_smart
|
|
* @property string $name
|
|
* @property user $user
|
|
*/
|
|
class Playlist extends Model
|
|
{
|
|
use CanFilterByUser;
|
|
|
|
protected $hidden = ['user_id', 'created_at', 'updated_at'];
|
|
protected $guarded = ['id'];
|
|
protected $casts = [
|
|
'user_id' => 'int',
|
|
'rules' => 'array',
|
|
];
|
|
protected $appends = ['is_smart'];
|
|
|
|
public function songs(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Song::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function getIsSmartAttribute(): bool
|
|
{
|
|
return (bool) $this->rules;
|
|
}
|
|
}
|