@extends('layouts.app') @section('template_title') {{ trans('themes.showHeadTitle') . ' ' . $theme->name }} @endsection @section('template_fastload_css') .list-group-responsive span:not(.label) { display: block; overflow-y: auto; } .list-group-responsive span.label { margin-left: 7.25em; } .theme-details-list strong { width: 5.5em; display: inline-block; position: absolute; } .theme-details-list span { margin-left: 5.5em; } @endsection @php $themeStatus = [ 'name' => trans('themes.statusDisabled'), 'class' => 'danger' ]; if($theme->status == 1) { $themeStatus = [ 'name' => trans('themes.statusEnabled'), 'class' => 'success' ]; } @endphp @section('content')