@extends('admin.layouts.app') @section('content')

{{ trans('update.themes') }}

{{-- Top Stats --}}
@foreach($themes as $themeItem)
{{ $themeItem->title }}
@if($themeItem->is_default)
{{ trans('update.default') }}
@endif @if($themeItem->enable)
{{ trans('public.active') }}
@else
{{ trans('public.inactive') }}
@endif
{{ $themeItem->title }}
{{--
{{ $themeItem->components_count }} {{ trans('update.components') }}
--}}
@endforeach
{{ $themes->appends(request()->input())->links() }}
@endsection @push('scripts_bottom') @endpush