@extends('layouts.back-end.app') @section('title','Website Information') @push('css_or_js') @endpush @section('content')

{{trans('messages.Website')}} {{trans('messages.Informations')}}

{{trans('messages.apple_store')}} {{trans('messages.Status')}}
@php($config=\App\CPU\Helpers::get_business_settings('download_app_apple_stroe'))
@csrf @if(isset($config))



@else @endif
{{trans('messages.google_play_store')}} {{trans('messages.Status')}}
@php($config=\App\CPU\Helpers::get_business_settings('download_app_google_stroe'))
@csrf @if(isset($config))



@else @endif
{{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}}
{{trans('messages.Web')}} {{trans('messages.logo')}}

@csrf
{{trans('messages.Mobile')}} {{trans('messages.logo')}}

@csrf
{{trans('messages.web_footer')}} {{trans('messages.logo')}}

@csrf
{{trans('messages.web_fav_icon')}}

@csrf
@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')}}

@csrf
@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