mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-07 02:30:49 +01:00
🌈 Skin Chromas
This commit is contained in:
24
app/Models/SkinChroma.php
Normal file
24
app/Models/SkinChroma.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SkinChroma extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'full_skin_id',
|
||||
'skin_name',
|
||||
'chroma_name',
|
||||
'chroma_colors',
|
||||
'chroma_image',
|
||||
];
|
||||
|
||||
public function skin()
|
||||
{
|
||||
return $this->belongsTo(Skin::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user