Big commit whatever

This commit is contained in:
2026-06-04 12:44:22 +02:00
parent ee1a87f125
commit 4fb7b1691c
133 changed files with 26137 additions and 1097 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Artist extends Model
{
protected $fillable = ['name', 'cover_path', 'release_date', 'label_id', 'duration'];
public function label(): BelongsTo
{
return $this->belongsTo(Label::class);
}
public function tracks(): BelongsToMany
{
return $this->belongsToMany(Track::class, 'artist_track');
}
}