@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')
{{ trans('themes.showTitle') }} {{ trans('themes.showBackBtn') }}

{{ $theme->name }}

{{ count($themeUsers) }} {{ trans('themes.showUsers') }}

  • {{ trans('themes.showStatus') }} {{ $themeStatus['name'] }}
  • Id {{ $theme->id }}
  • @if($theme->link != null)
  • {{ trans('themes.showLink') }} {{$theme->link}}
  • @endif @if($theme->notes != null)
  • {{ trans('themes.showNotes') }} {{ $theme->notes }}
  • @endif
  • {{ trans('themes.showAdded') }} {{ $theme->created_at }}
  • {{ trans('themes.showUpdated') }} {{ $theme->updated_at }}
@if(count($themeUsers) > 0)

Theme Users

    @foreach ($themeUsers as $themeUser)
  • {{ $themeUser->name }}
  • @endforeach
@endif
@include('modals.modal-delete') @endsection @section('footer_scripts') @include('scripts.delete-modal-script') @include('scripts.tooltips') @endsection