@extends('layouts.base') @section('content') @section('breadcrumb') @endsection

Gestion du thème

Gérez les thèmes de l'application {{ $application->name }}

@if(session('success')) @endif @if(session('error')) @endif @if($activeTheme)
Thème actif

{{ $activeTheme->name }}

Couleur primaire :
{{ $activeTheme->primary_color }}
@if($activeTheme->dark_mode)
Mode sombre
@endif
Créé le {{ $activeTheme->created_at->format('d/m/Y à H:i') }}
@else
Aucun thème actif. Veuillez activer un thème pour l'appliquer à votre application.
@endif
Thèmes disponibles
@if($themes->count() > 0)
@foreach($themes as $theme) @endforeach
Statut Nom Couleur primaire Mode sombre Date de création Actions
@if($theme->is_active) Actif @else Inactif @endif {{ $theme->name }}
{{ $theme->primary_color }}
@if($theme->dark_mode) Oui @else Non @endif {{ $theme->created_at->format('d/m/Y à H:i') }}
@if(!$theme->is_active)
@csrf
@endif @if(!$theme->is_active)
@csrf @method('DELETE')
@endif
@else
Aucun thème

Commencez par créer votre premier thème.

Créer un thème
@endif
@endsection