@php function rgbToHsl($r, $g, $b) { $r /= 255; $g /= 255; $b /= 255; $max = max($r, $g, $b); $min = min($r, $g, $b); $h = $s = $l = ($max + $min) / 2; if ($max == $min) { $h = $s = 0; // achromatic } else { $diff = $max - $min; $s = $l > 0.5 ? $diff / (2 - $max - $min) : $diff / ($max + $min); switch ($max) { case $r: $h = ($g - $b) / $diff + ($g < $b ? 6 : 0); break; case $g: $h = ($b - $r) / $diff + 2; break; case $b: $h = ($r - $g) / $diff + 4; break; } $h /= 6; } return [$h, $s, $l]; } function hslToRgb($h, $s, $l) { $r = $l; $g = $l; $b = $l; $v = $l <= 0.5 ? $l * (1.0 + $s) : $l + $s - $l * $s; if ($v > 0) { $m; $sv; $sextant; $fract; $vsf; $mid1; $mid2; $m = $l + $l - $v; $sv = ($v - $m) / $v; $h *= 6.0; $sextant = floor($h); $fract = $h - $sextant; $vsf = $v * $sv * $fract; $mid1 = $m + $vsf; $mid2 = $v - $vsf; switch ($sextant) { case 0: $r = $v; $g = $mid1; $b = $m; break; case 1: $r = $mid2; $g = $v; $b = $m; break; case 2: $r = $m; $g = $v; $b = $mid1; break; case 3: $r = $m; $g = $mid2; $b = $v; break; case 4: $r = $mid1; $g = $m; $b = $v; break; case 5: $r = $v; $g = $m; $b = $mid2; break; } } return [$r * 255, $g * 255, $b * 255]; } function saturateColor($color, $percent) { // Convert the hex color to RGB $color = str_replace('#', '', $color); $r = hexdec(substr($color, 0, 2)); $g = hexdec(substr($color, 2, 2)); $b = hexdec(substr($color, 4, 2)); // Convert RGB to HSL [$h, $s, $l] = rgbToHsl($r, $g, $b); // Increase the saturation $s += $percent / 100; $s = max(0, min(1, $s)); // Convert HSL back to RGB [$r, $g, $b] = hslToRgb($h, $s, $l); // Convert the RGB values back to hex $r = dechex(round($r)); $g = dechex(round($g)); $b = dechex(round($b)); // Ensure each color component is two characters long $r = str_pad($r, 2, '0', STR_PAD_LEFT); $g = str_pad($g, 2, '0', STR_PAD_LEFT); $b = str_pad($b, 2, '0', STR_PAD_LEFT); // Concatenate the color components $saturatedColor = '#' . $r . $g . $b; return $saturatedColor; } function darkenColor($color, $percent) { // Convert the hex color to RGB $color = str_replace('#', '', $color); $r = hexdec(substr($color, 0, 2)); $g = hexdec(substr($color, 2, 2)); $b = hexdec(substr($color, 4, 2)); // Reduce the RGB values by the percentage $r = max(0, min(255, $r - ($r * $percent) / 100)); $g = max(0, min(255, $g - ($g * $percent) / 100)); $b = max(0, min(255, $b - ($b * $percent) / 100)); // Convert the RGB values back to hex $r = dechex($r); $g = dechex($g); $b = dechex($b); // Ensure each color component is two characters long $r = str_pad($r, 2, '0', STR_PAD_LEFT); $g = str_pad($g, 2, '0', STR_PAD_LEFT); $b = str_pad($b, 2, '0', STR_PAD_LEFT); // Concatenate the color components $darkerColor = '#' . $r . $g . $b; return $darkerColor; } @endphp @extends('panel.layout.app', ['layout_wide' => true, 'disable_tblr' => true]) @section('title', __('AI Writer')) @section('titlebar_subtitle', __('Text Generator & AI Copywriting Assistant')) @section('titlebar_actions') {{ __('My Documents') }} @if (setting('user_ai_writer_custom_templates', 0)) {{ __('Create Template') }} @endif @endsection @section('titlebar_after') @php $filter_check = []; foreach ($list as $item) { if ($item->active != 1) { continue; } if ($item->filters) { foreach (explode(',', $item->filters) as $filter) { $filter_check[] = $filter; } } } $filter_check = array_unique($filter_check); @endphp @endsection @section('content')
@foreach ($list as $item) @if ($item->active != 1 || str()->startsWith($item->slug, 'ai_')) @continue @endif @endforeach
@endsection @push('script') @endpush