mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
feat: code for emotes
This commit is contained in:
15
app/Models/SummonerEmote.php
Normal file
15
app/Models/SummonerEmote.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SummonerEmote extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'emote_id',
|
||||
'title',
|
||||
'description',
|
||||
'image',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user