@php
$iconMap = [
App\Models\Category::TV_ROOT => 'fa-television',
App\Models\Category::MOVIE_ROOT => 'fa-film',
App\Models\Category::GAME_ROOT => 'fa-gamepad',
App\Models\Category::PC_ROOT => 'fa-desktop',
App\Models\Category::MUSIC_ROOT => 'fa-music',
App\Models\Category::BOOKS_ROOT => 'fa-book',
App\Models\Category::XXX_ROOT => 'fa-ban',
];
$catIcon = $iconMap[$parentcat['id']] ?? 'fa-folder';
@endphp