@extends('layouts.app') @section('content')
{{ __('Theme Colors Settings') }}
@csrf
{{ __('Current Color') }}

{{ $primary }}

{{ $secondary }}

@if (app()->environment('local')) @hasPermission('admin.themeColor.update') @endhasPermission @endif
{{ __('Available Colors palette') }}
@foreach ($themeColors as $themeColor)
@php $shades = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950]; @endphp @foreach ($shades as $shade)
{{ $shade }}
@endforeach
@endforeach
@csrf
@endsection @push('css') @endpush @push('scripts') @endpush