@extends('backEnd.master') @section('title') @lang('style.color_theme') @endsection @push('css') @endpush @section('mainContent')
@if (userPermission('theme-create')) {{ __('style.Add New Theme') }} @endif
@php @$count=1; @endphp @foreach ($themes as $theme) @endforeach
@lang('common.sl') @lang('common.title') @lang('common.type') @lang('style.colors') @lang('style.Background') @lang('common.status') {{ __('common.action') }}
{{ $loop->index +1 }} {{ $theme->title }} {{ __('style.' . $theme->color_mode) }}
@foreach ($theme->colors as $color)
{{ __('style.' . $color->name) }} : {{ @$color->pivot->value }}
@endforeach
@if (@$theme->background_type == 'image')
@else
@endif
@if (@$theme->is_default == 1) @lang('common.active') @else @if(userPermission("themes.default")) @if (env('APP_SYNC')) @lang('style.Make Default') @else @lang('style.Make Default') @endif @endif @endif
@endsection @include('backEnd.partials.data_table_js')