mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
15 lines
198 B
PHP
15 lines
198 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SummonerEmote extends Model
|
|
{
|
|
protected $fillable = [
|
|
'emote_id',
|
|
'title',
|
|
'image',
|
|
];
|
|
}
|