@extends('admin.layout')
@section('admin-title')
Themes
@endsection
@section('admin-content')
{!! breadcrumbs(['Admin Panel' => 'admin', 'Themes' => 'admin/theme']) !!}
Themes
You can create new Themes here for your users to be able to select from to view the site.
@if (!count($themes))
No themes found.
@else
{!! $themes->render() !!}
@foreach ($themes as $theme)
{!! $theme->is_default ? '' : '' !!}{!! $theme->is_active ? '' : '' !!}{{ $theme->name }}
{!! $theme->userCount ? 'In use by ' . $theme->userCount . ' user' . ($theme->userCount == 1 ? '' : 's') . '' : 'Not in use' !!}
{!! $theme->creators ? $theme->creatorDisplayName : 'N/A' !!}
@endforeach
{!! $themes->render() !!}
@endif
@endsection