@foreach ($layouts as $data) @endforeach
{{ __('Name') }} {{ __('Primary Color') }} {{ __('Action') }}
{{ ucFirst(str_replace('_', ' ', $data)) }} {{-- This empty from will be remove during render --}}
@php $primaryColor = $themeOption->where('name', $data . '_template_primary_color'); $color = '#FCCA19'; if ($primaryColor->count()) { $color = $primaryColor->first()->value; } @endphp
@if ($data != 'default') {{ __('Edit') }}
@csrf {{ __('Delete') }}
@endif @if ($data != $layout) {{ __('Setting') }} @endif