@extends('panel::layouts.app') @section('body-class', 'theme') @section('title', __('panel/menu.themes')) @section('content')
@if($themes)
@foreach($themes as $theme)
{{ $theme['name'] }} @include('panel::shared.list_switch', ['value' => $theme['value'] ?? 0, 'url' => panel_route('themes.active', $theme['code']), 'reload' => true])
@endforeach
@else @endif
@endsection