Files
HeimerdingerLoL/app/Models/SummonerEmote.php
Rico van Zelst c11df81e5c feat: emote data
2023-11-26 18:24:23 +01:00

15 lines
198 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SummonerEmote extends Model
{
protected $fillable = [
'emote_id',
'title',
'image',
];
}