@extends('layouts.app') @section('title') Theme-Style @endsection @section('content')
@include('flash::message') @if ($errors->any())
{{ $errors->first() }}
@endif @include('flash::message')
Gradient Enable
{{ $colorExist = false}} {{ $colorGradientExist = false }} @foreach(App\Models\ThemeStyle::THEME as $color => $value) @php if ($themeStyleData['theme_style'] == $color){ $colorExist = true; } @endphp @php if(isset(explode(',',$themeStyleData['theme_style'])[1])){ $colorGradientExist= true; } @endphp
@endforeach

@endsection