@extends('layouts.admin') @section('page-title') {{__('Settings')}} @endsection @php // $logo=asset(Storage::url('uploads/logo/')); $logo=\App\Models\Utility::get_file('uploads/logo'); $logo_light = \App\Models\Utility::getValByName('company_logo_light'); $logo_dark = \App\Models\Utility::getValByName('company_logo_dark'); $company_favicon = \App\Models\Utility::getValByName('company_favicon'); $setting = \App\Models\Utility::colorset(); $mode_setting = \App\Models\Utility::mode_layout(); $color = (!empty($setting['color'])) ? $setting['color'] : 'theme-3'; $company_setting=\App\Models\Utility::settingsById('site_currency'); $SITE_RTL= isset($setting['SITE_RTL'])?$setting['SITE_RTL']:'off'; $EmailTemplates = App\Models\EmailTemplate::all(); $currantLang = Utility::languages(); @endphp @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @push('script-page') @endpush @section('content')
{{Form::model($settings,array('route'=>'business.setting','method'=>'POST','enctype' => "multipart/form-data"))}}
{{ __('Business Setting') }}
{{ __('Edit details about your Company') }}
{{ __('Logo dark') }}
{{-- --}}
@error('company_logo_dark')
@enderror
{{ __('Logo Light') }}
{{-- --}}
@error('company_logo_light')
@enderror
{{ __('Favicon') }}
{{-- --}}
{{-- --}}
@error('logo')
@enderror
{{Form::label('title_text',__('Title Text'),array('class'=>'form-label')) }} {{Form::text('title_text',null,array('class'=>'form-control','placeholder'=>__('Title Text')))}} @error('title_text') {{ $message }} @enderror
{{Form::label('footer_text',__('Footer Text'),['class'=>'form-label']) }} {{Form::text('footer_text',Utility::getValByName('footer_text'),array('class'=>'form-control','placeholder'=>__('Enter Footer Text')))}} @error('footer_text') {{ $message }} @enderror
{{__('Theme Customizer')}}
{{ __('Primary color settings') }}

{{__('Sidebar settings')}}

{{__('Layout settings')}}

{{ Form::close() }}
{{ __('System Setting') }}
{{ __('Edit details about your Company') }}
{{Form::model($settings,array('route'=>'system.settings','method'=>'post'))}}
{{Form::label('site_currency',__('Currency *'),array('class' => 'form-label')) }} {{-- {{Form::text('site_currency',null,array('class'=>'form-control font-style'))}}--}} {{ Form::text('site_currency', $settings['site_currency'], ['class' => 'form-control font-style', 'required', 'placeholder' => __('Enter Currency')]) }} {{ __('Note: Add currency code as per three-letter ISO code.') }}
{{ __('you can find out here..') }}

@error('site_currency') {{ $message }} @enderror
{{Form::label('site_currency_symbol',__('Currency Symbol '),array('class' => 'form-label')) }} {{Form::text('site_currency_symbol',null,array('class'=>'form-control'))}} @error('site_currency_symbol') {{ $message }} @enderror
{{Form::label('invoice_prefix',__('Invoice Prefix'),array('class'=>'form-label')) }} {{Form::text('invoice_prefix',null,array('class'=>'form-control'))}} @error('invoice_prefix') {{ $message }} @enderror
{{Form::label('proposal_prefix',__('Proposal Prefix'),array('class'=>'form-label')) }} {{Form::text('proposal_prefix',null,array('class'=>'form-control'))}} @error('proposal_prefix') {{ $message }} @enderror
{{Form::label('purchase_prefix',__('Purchase Prefix'),array('class'=>'form-label')) }} {{Form::text('purchase_prefix',null,array('class'=>'form-control'))}} @error('purchase_prefix') {{ $message }} @enderror
{{Form::label('pos_prefix',__('Pos Prefix'),array('class'=>'form-label')) }} {{Form::text('pos_prefix',null,array('class'=>'form-control'))}} @error('pos_prefix') {{ $message }} @enderror
{{Form::label('bill_prefix',__('Bill Prefix'),array('class'=>'form-label')) }} {{Form::text('bill_prefix',null,array('class'=>'form-control'))}} @error('bill_prefix') {{ $message }} @enderror
{{Form::label('customer_prefix',__('Customer Prefix'),array('class'=>'form-label')) }} {{Form::text('customer_prefix',null,array('class'=>'form-control'))}} @error('customer_prefix') {{ $message }} @enderror
{{Form::label('vender_prefix',__('Vendor Prefix'),array('class'=>'form-label')) }} {{Form::text('vender_prefix',null,array('class'=>'form-control'))}} @error('vender_prefix') {{ $message }} @enderror
{{Form::label('footer_title',__('Invoice/Bill Footer Title'),array('class'=>'form-label')) }} {{Form::text('footer_title',null,array('class'=>'form-control'))}} @error('footer_title') {{ $message }} @enderror
{{Form::label('decimal_number',__('Decimal Number Format'),array('class'=>'form-label')) }} {{Form::number('decimal_number', null, ['class'=>'form-control'])}} @error('decimal_number') {{ $message }} @enderror
{{Form::label('journal_prefix',__('Journal Prefix'),array('class'=>'form-label')) }} {{Form::text('journal_prefix',null,array('class'=>'form-control'))}} @error('journal_prefix') {{ $message }} @enderror

{{__("App Site URL to login app.")}} {{ Form::text('currency',URL::to('/'), ['class' => 'form-control', 'placeholder' => __('Enter Currency'),'disabled'=>'true']) }}

{{__("Image Screenshort Take Interval time ( 1 = 1 min)")}} {{ Form::number('interval_time',isset($settings['interval_time'])?$settings['interval_time']:'10', ['class' => 'form-control', 'placeholder' => __('Enter Tracking Interval')]) }}
{{Form::label('shipping_display',__('Shipping Display in Proposal / Invoice / Bill ?'),array('class'=>'form-label')) }}
@error('shipping_display') {{ $message }} @enderror
{{Form::label('footer_notes',__('Invoice/Bill Footer Notes'),array('class'=>'form-label')) }} {{Form::textarea('footer_notes', null, ['class'=>'form-control','rows'=>'3'])}} @error('footer_notes') {{ $message }} @enderror
{{Form::close()}}
{{ __('Company Setting') }}
{{ __('Edit details about your Company') }}
{{Form::model($settings,array('route'=>'company.settings','method'=>'post'))}}
{{Form::label('company_name *',__('Company Name *'),array('class' => 'form-label')) }} {{Form::text('company_name',null,array('class'=>'form-control font-style','maxlength'=>60,'minlength'=>3))}} @error('company_name') {{ $message }} @enderror
{{Form::label('company_address',__('Address'),array('class' => 'form-label')) }} {{Form::text('company_address',null,array('class'=>'form-control font-style'))}} @error('company_address') {{ $message }} @enderror
{{Form::label('company_country',__('Country'),array('class' => 'form-label')) }} @error('company_country') {{ $message }} @enderror
{{Form::label('company_state',__('State'),array('class' => 'form-label')) }} @error('company_state') {{ $message }} @enderror
{{Form::label('company_city',__('City'),array('class' => 'form-label')) }} {{Form::text('company_city',null,array('class'=>'form-control font-style'))}} @error('company_city') {{ $message }} @enderror
{{Form::label('company_zipcode',__('Zip/Post Code'),array('class' => 'form-label')) }} {{Form::text('company_zipcode',null,array('class'=>'form-control'))}} @error('company_zipcode') {{ $message }} @enderror
{{Form::label('company_telephone',__('Telephone'),array('class' => 'form-label')) }} {{Form::number('company_telephone',null,array('class'=>'form-control'))}} @error('company_telephone') {{ $message }} @enderror
{{Form::label('company_email',__('System Email *'),array('class' => 'form-label')) }} {{Form::email('company_email',null,array('class'=>'form-control','required'=>'required'))}} @error('company_email') {{ $message }} @enderror
{{Form::label('company_email_from_name',__('Email (From Name) *'),array('class' => 'form-label')) }} {{Form::text('company_email_from_name',null,array('class'=>'form-control font-style'))}} @error('company_email_from_name') {{ $message }} @enderror
{{Form::label('registration_number',__('Company Registration Number *'),array('class' => 'form-label')) }} {{Form::text('registration_number',null,array('class'=>'form-control'))}} @error('registration_number') {{ $message }} @enderror
{{Form::text('vat_number',null,array('class'=>'form-control','placeholder'=>__('Enter VAT / GST Number')))}}
{{Form::label('timezone',__('Timezone'),array('class' => 'form-label'))}}
{{Form::label('company_start_time',__('Company Start Time *'),array('class' => 'form-label')) }} {{Form::time('company_start_time',null,array('class'=>'form-control'))}} @error('company_start_time') {{ $message }} @enderror
{{Form::label('company_end_time',__('Company End Time *'),array('class' => 'form-label')) }} {{Form::time('company_end_time',null,array('class'=>'form-control'))}} @error('company_end_time') {{ $message }} @enderror
{{--
--}}
{{Form::close()}}
@if((\Auth::user()->type == 'super admin'))
{{ __('Payment Setting') }}
{{ __('This detail will use for collect payment on invoice from clients. On invoice client will find out pay now button based on your below configuration.') }}
{{Form::model($settings,['route'=>'company.payment.settings', 'method'=>'POST'])}} @csrf



@if ($errors->has('mercado_secret_key')) {{ $errors->first('mercado_access_token') }} @endif



{{ __('Zoom-Meeting Setting') }}
{{ __('Edit details about your Company zoom-meeting setting') }}
{{Form::model($settings,array('route'=>'zoom.settings','method'=>'post'))}}

{{-- {{__("Zoom API Key.")}}--}} {{ Form::text('zoom_apikey',isset($settings['zoom_apikey'])?$settings['zoom_apikey']:'', ['class' => 'form-control', 'placeholder' => __('Enter Zoom API Key')]) }}

{{-- {{__("Zoom API Secret.")}}--}} {{ Form::text('zoom_apisecret',isset($settings['zoom_apisecret'])?$settings['zoom_apisecret']:'', ['class' => 'form-control', 'placeholder' => __('Enter Zoom API Secret')]) }}
{{ Form::close() }}
{{ __('Slack Setting') }}
{{ __('Edit details about your Company slack setting') }}
{{ Form::open(['route' => 'slack.settings','id'=>'slack-setting','method'=>'post' ,'class'=>'d-contents']) }}

{{ Form::text('slack_webhook', isset($settings['slack_webhook']) ?$settings['slack_webhook'] :'', ['class' => 'form-control w-100', 'placeholder' => __('Enter Slack Webhook URL'), 'required' => 'required']) }}
{{__('Module Setting')}}
  • {{__('Lead create')}} {{Form::checkbox('lead_notification', '1',isset($settings['lead_notification']) && $settings['lead_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'lead_notification'))}}
  • {{__('Deal create')}} {{Form::checkbox('deal_notification', '1',isset($settings['deal_notification']) && $settings['deal_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'deal_notification'))}}
  • {{__('Lead To Deal convert')}} {{Form::checkbox('leadtodeal_notification', '1',isset($settings['leadtodeal_notification']) && $settings['leadtodeal_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'leadtodeal_notification'))}}
  • {{__('Contract create')}} {{Form::checkbox('contract_notification', '1',isset($settings['contract_notification']) && $settings['contract_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'contract_notification'))}}
  • {{__('Project create')}} {{Form::checkbox('project_notification', '1',isset($settings['project_notification']) && $settings['project_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'project_notification'))}}
  • {{__('Task create')}} {{Form::checkbox('task_notification', '1',isset($settings['task_notification']) && $settings['task_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'task_notification'))}}
  • {{__('Task Move create')}} {{Form::checkbox('taskmove_notification', '1',isset($settings['taskmove_notification']) && $settings['taskmove_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'taskmove_notification'))}}
  • {{__('Task Comment')}} {{Form::checkbox('taskcomment_notification', '1',isset($settings['taskcomment_notification']) && $settings['taskcomment_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'taskcomment_notification'))}}
  • {{__('Monthly Payslip Generate')}} {{Form::checkbox('payslip_notification', '1',isset($settings['payslip_notification']) && $settings['payslip_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'payslip_notification'))}}
  • {{__('Award create')}} {{Form::checkbox('award_notification', '1',isset($settings['award_notification']) && $settings['award_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'award_notification'))}}
  • {{__('Announcement create')}} {{Form::checkbox('announcement_notification', '1',isset($settings['announcement_notification']) && $settings['announcement_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'announcement_notification'))}}
  • {{__('Holiday create')}} {{Form::checkbox('holiday_notification', '1',isset($settings['holiday_notification']) && $settings['holiday_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'holiday_notification'))}}
  • {{__('Support create')}} {{Form::checkbox('support_notification', '1',isset($settings['support_notification']) && $settings['support_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'support_notification'))}}
  • {{__('Event create')}} {{Form::checkbox('event_notification', '1',isset($settings['event_notification']) && $settings['event_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'event_notification'))}}
  • {{__('Meeting create')}} {{Form::checkbox('meeting_notification', '1',isset($settings['meeting_notification']) && $settings['meeting_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'meeting_notification'))}}
  • {{__('Company Policy create')}} {{Form::checkbox('policy_notification', '1',isset($settings['policy_notification']) && $settings['policy_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'policy_notification'))}}
  • {{__('Invoice create')}} {{Form::checkbox('invoice_notification', '1',isset($settings['invoice_notification']) && $settings['invoice_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'invoice_notification'))}}
  • {{__('Revenue create')}} {{Form::checkbox('revenue_notification', '1',isset($settings['revenue_notification']) && $settings['revenue_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'revenue_notification'))}}
  • {{__('Bill create')}} {{Form::checkbox('bill_notification', '1',isset($settings['bill_notification']) && $settings['bill_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'bill_notification'))}}
  • {{__('Payment create')}} {{Form::checkbox('payment_notification', '1',isset($settings['payment_notification']) && $settings['payment_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'payment_notification'))}}
  • {{__('Budget create')}} {{Form::checkbox('budget_notification', '1',isset($settings['budget_notification']) && $settings['budget_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'budget_notification'))}}
{{ Form::close() }}
{{ __('Telegram Setting') }}
{{ __('Edit details about your Company telegram setting') }}
{{ Form::open(['route' => 'telegram.settings','id'=>'telegram-setting','method'=>'post' ,'class'=>'d-contents']) }}

{{ Form::text('telegram_accestoken',isset($settings['telegram_accestoken'])?$settings['telegram_accestoken']:'', ['class' => 'form-control', 'placeholder' => __('Enter Telegram AccessToken')]) }}

{{ Form::text('telegram_chatid',isset($settings['telegram_chatid'])?$settings['telegram_chatid']:'', ['class' => 'form-control', 'placeholder' => __('Enter Telegram ChatID')]) }}
{{__('Module Setting')}}
  • {{__('Lead create')}} {{Form::checkbox('telegram_lead_notification', '1',isset($settings['telegram_lead_notification']) && $settings['telegram_lead_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_lead_notification'))}}
  • {{__('Deal create')}} {{Form::checkbox('telegram_deal_notification', '1',isset($settings['telegram_deal_notification']) && $settings['telegram_deal_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_deal_notification'))}}
  • {{__('Lead To Deal convert')}} {{Form::checkbox('telegram_leadtodeal_notification', '1',isset($settings['telegram_leadtodeal_notification']) && $settings['telegram_leadtodeal_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_leadtodeal_notification'))}}
  • {{__('Contract create')}} {{Form::checkbox('telegram_contract_notification', '1',isset($settings['telegram_contract_notification']) && $settings['telegram_contract_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_contract_notification'))}}
  • {{__('Project create')}} {{Form::checkbox('telegram_project_notification', '1',isset($settings['telegram_project_notification']) && $settings['telegram_project_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_project_notification'))}}
  • {{__('Task create')}} {{Form::checkbox('telegram_task_notification', '1',isset($settings['telegram_task_notification']) && $settings['telegram_task_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_task_notification'))}}
  • {{__('Task Move create')}} {{Form::checkbox('telegram_taskmove_notification', '1',isset($settings['telegram_taskmove_notification']) && $settings['telegram_taskmove_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_taskmove_notification'))}}
  • {{__('Task Comment')}} {{Form::checkbox('telegram_taskcomment_notification', '1',isset($settings['telegram_taskcomment_notification']) && $settings['telegram_taskcomment_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_taskcomment_notification'))}}
  • {{__('Monthly Payslip Generate')}} {{Form::checkbox('telegram_payslip_notification', '1',isset($settings['telegram_payslip_notification']) && $settings['telegram_payslip_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_payslip_notification'))}}
  • {{__('Award create')}} {{Form::checkbox('telegram_award_notification', '1',isset($settings['telegram_award_notification']) && $settings['telegram_award_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_award_notification'))}}
  • {{__('Announcement create')}} {{Form::checkbox('telegram_announcement_notification', '1',isset($settings['telegram_announcement_notification']) && $settings['telegram_announcement_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_announcement_notification'))}}
  • {{__('Holiday create')}} {{Form::checkbox('telegram_holiday_notification', '1',isset($settings['telegram_holiday_notification']) && $settings['telegram_holiday_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_holiday_notification'))}}
  • {{__('Support create')}} {{Form::checkbox('telegram_support_notification', '1',isset($settings['telegram_support_notification']) && $settings['telegram_support_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_support_notification'))}}
  • {{__('Event create')}} {{Form::checkbox('telegram_event_notification', '1',isset($settings['telegram_event_notification']) && $settings['telegram_event_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_event_notification'))}}
  • {{__('Meeting create')}} {{Form::checkbox('telegram_meeting_notification', '1',isset($settings['telegram_meeting_notification']) && $settings['telegram_meeting_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_meeting_notification'))}}
  • {{__('Company Policy create')}} {{Form::checkbox('telegram_policy_notification', '1',isset($settings['telegram_policy_notification']) && $settings['telegram_policy_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_policy_notification'))}}
  • {{__('Invoice create')}} {{Form::checkbox('telegram_invoice_notification', '1',isset($settings['telegram_invoice_notification']) && $settings['telegram_invoice_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_invoice_notification'))}}
  • {{__('Revenue create')}} {{Form::checkbox('telegram_revenue_notification', '1',isset($settings['telegram_revenue_notification']) && $settings['telegram_revenue_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_revenue_notification'))}}
  • {{__('Bill create')}} {{Form::checkbox('telegram_bill_notification', '1',isset($settings['telegram_bill_notification']) && $settings['telegram_bill_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_bill_notification'))}}
  • {{__('Payment create')}} {{Form::checkbox('telegram_payment_notification', '1',isset($settings['telegram_payment_notification']) && $settings['telegram_payment_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_payment_notification'))}}
  • {{__('Budget create')}} {{Form::checkbox('telegram_budget_notification', '1',isset($settings['telegram_budget_notification']) && $settings['telegram_budget_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'telegram_budget_notification'))}}
{{ Form::close() }}
{{ __('Twilio Setting') }}
{{ __('Edit details about your Company twilio setting') }}
{{Form::model($settings,array('route'=>'twilio.setting','method'=>'post'))}}
{{Form::label('twilio_sid',__('Twilio SID '),array('class'=>'form-label')) }} {{ Form::text('twilio_sid', isset($settings['twilio_sid']) ?$settings['twilio_sid'] :'', ['class' => 'form-control w-100', 'placeholder' => __('Enter Twilio SID'), 'required' => 'required']) }} @error('twilio_sid') {{ $message }} @enderror
{{Form::label('twilio_token',__('Twilio Token'),array('class'=>'form-label')) }} {{ Form::text('twilio_token', isset($settings['twilio_token']) ?$settings['twilio_token'] :'', ['class' => 'form-control w-100', 'placeholder' => __('Enter Twilio Token'), 'required' => 'required']) }} @error('twilio_token') {{ $message }} @enderror
{{Form::label('twilio_from',__('Twilio From'),array('class'=>'form-label')) }} {{ Form::text('twilio_from', isset($settings['twilio_from']) ?$settings['twilio_from'] :'', ['class' => 'form-control w-100', 'placeholder' => __('Enter Twilio From'), 'required' => 'required']) }} @error('twilio_from') {{ $message }} @enderror
{{__('Module Setting')}}
  • {{__('Customer create')}} {{Form::checkbox('twilio_customer_notification', '1',isset($settings['twilio_customer_notification']) && $settings['twilio_customer_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_customer_notification'))}}
  • {{__('Vendor create')}} {{Form::checkbox('twilio_vender_notification', '1',isset($settings['twilio_vender_notification']) && $settings['twilio_vender_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_vender_notification'))}}
  • {{__('Invoice Create')}} {{Form::checkbox('twilio_invoice_notification', '1',isset($settings['twilio_invoice_notification']) && $settings['twilio_invoice_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_invoice_notification'))}}
  • {{__('Revenue create')}} {{Form::checkbox('twilio_revenue_notification', '1',isset($settings['twilio_revenue_notification']) && $settings['twilio_revenue_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_revenue_notification'))}}
  • {{__('Bill Create')}} {{Form::checkbox('twilio_bill_notification', '1',isset($settings['twilio_bill_notification']) && $settings['twilio_bill_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_bill_notification'))}}
  • {{__('Proposal create')}} {{Form::checkbox('twilio_proposal_notification', '1',isset($settings['twilio_proposal_notification']) && $settings['twilio_proposal_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_proposal_notification'))}}
  • {{__('Payment Create')}} {{Form::checkbox('twilio_payment_notification', '1',isset($settings['twilio_payment_notification']) && $settings['twilio_payment_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_payment_notification'))}}
  • {{__('Invoice Reminder')}} {{Form::checkbox('twilio_reminder_notification', '1',isset($settings['twilio_reminder_notification']) && $settings['twilio_reminder_notification'] == '1' ?'checked':'',array('class'=>'form-check-input','id'=>'twilio_reminder_notification'))}}
{{ Form::close() }}
{{ __('Email Notification') }}
{{ __('Edit details about your Company email notification setting') }}
@foreach ($EmailTemplates as $EmailTemplate)
template)?$EmailTemplate->template->is_active:0 == 1) checked="checked" @endif type="checkbox" value="{{!empty($EmailTemplate->template)?$EmailTemplate->template->is_active:1}}" data-url="{{route('status.email.language',[!empty($EmailTemplate->template)?$EmailTemplate->template->id:''])}}" />
@endforeach
{{ __('Offer Letter Setting') }}
{{ __('Placeholders') }}

{{__('Applicant Name')}} : {applicant_name}

{{__('Company Name')}} : {app_name}

{{__('Job title')}} : {job_title}

{{__('Job type')}} : {job_type}

{{__('Proposed Start Date')}} : {start_date}

{{__('Working Location')}} : {workplace_location}

{{__('Days Of Week')}} : {days_of_week}

{{__('Salary')}} : {salary}

{{__('Salary Type')}} : {salary_type}

{{__('Salary Duration')}} : {salary_duration}

{{__('Offer Expiration Date')}} : {offer_expiration_date}

{{ Form::open(['route' => ['offerlatter.update',$offerlang], 'method' => 'post']) }}
{{Form::label('content',__(' Format'),['class'=>'form-label text-dark'])}}
{{-- --}} {{ Form::close() }}
{{ __('Joining Letter Setting') }}
{{ __('Placeholders') }}

{{__('Applicant Name')}} : {date}

{{__('Company Name')}} : {app_name}

{{__('Employee Name')}} : {employee_name}

{{__('Address')}} : {address}

{{__('Designation')}} : {designation}

{{__('Start Date')}} : {start_date}

{{__('Branch')}} : {branch}

{{__('Start Time')}} : {start_time}

{{__('End Time')}} : {end_time}

{{__('Number of Hours')}} : {total_hours}

{{ Form::open(['route' => ['joiningletter.update',$joininglang], 'method' => 'post']) }}
{{Form::label('content',__(' Format'),['class'=>'form-label text-dark'])}}
{{ Form::close() }}
{{ __('Experience Certificate Setting') }}
{{ __('Placeholders') }}

{{__('Company Name')}} : {app_name}

{{__('Employee Name')}} : {employee_name}

{{__('Date of Issuance')}} : {date}

{{__('Designation')}} : {designation}

{{__('Start Date')}} : {start_date}

{{__('Branch')}} : {branch}

{{__('Start Time')}} : {start_time}

{{__('End Time')}} : {end_time}

{{__('Number of Hours')}} : {total_hours}

{{ Form::open(['route' => ['experiencecertificate.update',$explang ], 'method' => 'post']) }}
{{Form::label('content',__(' Format'),['class'=>'form-label text-dark'])}}
{{ Form::close() }}
{{ __('NOC Setting') }}
{{ __('Placeholders') }}

{{__('Date')}} : {date}

{{__('Company Name')}} : {app_name}

{{__('Employee Name')}} : {employee_name}

{{__('Designation')}} : {designation}

{{ Form::open(['route' => ['noc.update',$noclang], 'method' => 'post']) }}
{{Form::label('content',__(' Format'),['class'=>'form-label text-dark'])}}
{{ Form::close() }}
@endif
@endsection