@extends('layouts.back-end.app')
@section('title','Website Information')
@push('css_or_js')
@endpush
@section('content')
{{trans('messages.Website')}} {{trans('messages.Informations')}}
@php($config=\App\CPU\Helpers::get_business_settings('download_app_apple_stroe'))
@php($config=\App\CPU\Helpers::get_business_settings('download_app_google_stroe'))
{{trans('messages.name')}} : {{$company_name->value}}
{{trans('messages.Email')}}: {{$company_email->value}}
{{trans('messages.Phone')}}: {{$company_phone->value}}
{{trans('messages.copy_right')}} {{$company_copyright_text->value}}
@php($colors=\App\Models\BusinessSetting::where(['type'=>'colors'])->first())
@if(isset($colors))
@php($data=json_decode($colors['value']))
@else
@php(\Illuminate\Support\Facades\DB::table('business_settings')->insert([
'type'=>'colors',
'value'=>json_encode(
[
'primary'=>null,
'secondary'=>null,
])
]))
@php($colors=\App\Models\BusinessSetting::where(['type'=>'colors'])->first())
@php($data=json_decode($colors['value']))
@endif
{{trans('messages.web_color_setup')}}
@include('shared-partials.image-process._image-crop-modal',['modal_id'=>'company-web-Logo'])
@include('shared-partials.image-process._image-crop-modal',['modal_id'=>'company-mobile-Logo'])
@include('shared-partials.image-process._image-crop-modal', ['modal_id'=>'company-footer-Logo'])
@include('shared-partials.image-process._image-crop-modal', ['modal_id'=>'company-fav-icon'])
@endsection
@push('script')
@include('shared-partials.image-process._script',[
'id'=>'company-web-Logo',
'height'=>200,
'width'=>784,
'multi_image'=>false,
'route'=>route('image-upload')
])
@include('shared-partials.image-process._script',[
'id'=> 'company-footer-Logo',
'height'=>200,
'width'=>784,
'multi_image'=>false,
'route' => route('image-upload')
])
@include('shared-partials.image-process._script',[
'id'=> 'company-fav-icon',
'height'=>100,
'width'=>100,
'multi_image'=>false,
'route' => route('image-upload')
])
@include('shared-partials.image-process._script',[
'id'=>'company-mobile-Logo',
'height'=>200,
'width'=>784,
'multi_image'=>false,
'route'=>route('image-upload')
])
@endpush