feat: Add functionality to retrieve champion images from the database

- Added a new function `getChampionImage` to fetch champion images based on ID and type.
- Created a new model `ChampionImage` to store champion image details in the database.
- Implemented seeding of champion images using `ChampionImageSeeder`.
- Updated usage of champion images in existing methods.
This commit is contained in:
Rico van Zelst
2024-05-02 00:50:51 +02:00
parent 80fc3200c6
commit 6d2731f1d3
8 changed files with 138 additions and 18 deletions

View File

@@ -6,6 +6,7 @@ namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Artisan;
class DatabaseSeeder extends Seeder
{
@@ -20,8 +21,10 @@ class DatabaseSeeder extends Seeder
$this->call(ChampionRolesSeeder::class);
$this->call(SummonerIconSeeder::class);
$this->call(SummonerEmoteSeeder::class);
$this->call(ChampionImageSeeder::class);
Cache::flush();
Artisan::call('cloudflare:purge');
Log::info('Seeding complete at '.date('Y-m-d H:i:s'));
}