@extends('layouts.admin')
@section('page-title')
{{ __('Settings') }}
@endsection
@section('breadcrumb')
{{ __('Dashboard') }}
{{ __('Settings') }}
@endsection
@php
$lang = \App\Models\Utility::getValByName('default_language');
$logo = \App\Models\Utility::get_file('uploads/logo');
$logo_light = \App\Models\Utility::getValByName('logo_light');
$logo_dark = \App\Models\Utility::getValByName('logo_dark');
$company_favicon = \App\Models\Utility::getValByName('company_favicon');
$setting = \App\Models\Utility::colorset();
$color = !empty($setting['color']) ? $setting['color'] : 'theme-3';
$flag = !empty($setting['color_flag']) ? $setting['color_flag'] : '';
$SITE_RTL = isset($setting['SITE_RTL']) ? $setting['SITE_RTL'] : 'off';
$meta_image = \App\Models\Utility::get_file('uploads/meta/');
$google_recaptcha_version = ['v2-checkbox' => __('v2'), 'v3' => __('v3')];
@endphp
{{-- Storage setting --}}
@php
$file_type = config('files_types');
$setting = App\Models\Utility::settings();
$local_storage_validation = $setting['local_storage_validation'];
$local_storage_validations = explode(',', $local_storage_validation);
$s3_storage_validation = $setting['s3_storage_validation'];
$s3_storage_validations = explode(',', $s3_storage_validation);
$wasabi_storage_validation = $setting['wasabi_storage_validation'];
$wasabi_storage_validations = explode(',', $wasabi_storage_validation);
@endphp
{{-- end Storage setting --}}
@push('css-page')
@if ($color == 'theme-3')
@endif
@if ($color == 'theme-2')
@endif
@if ($color == 'theme-4')
@endif
@if ($color == 'theme-1')
@endif
@endpush
@push('script-page')
{{-- for cookie setting --}}
@endpush
@section('breadcrumb')
{{ __('Dashboard') }}
{{ __('Settings') }}
@endsection
@section('content')
@endsection