Add setting helpers: Introduced a new helper function for retrieving settings values, enhancing the configuration management. Updated composer.json to autoload the new helper file. Updated the app.css and app.js files to the latest versions of Tailwind CSS and Chart.js, respectively, ensuring compatibility and performance improvements.

This commit is contained in:
Ümit Tunç
2025-11-05 16:52:47 -03:00
parent 9248df9a99
commit 27e1846aec
18 changed files with 143 additions and 84 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ $meta['title'] ?? ($settings->default_meta_title ?? config('app.name')) }}</title>
<title>{{ setting('seo_meta_title') }} - {{ $meta['title'] ?? ($settings->default_meta_title ?? config('app.name')) }}</title>
<meta name="description" content="{{ $meta['description'] ?? ($settings->default_meta_description ?? '') }}">
<link rel="icon" href="{{ $settings?->favicon_path ? asset($settings->favicon_path) : asset('assets/img/favicon.ico') }}">
<link rel="stylesheet" href="{{ asset('html/style.css') }}">