Files
faveo/resources/views/themes/default1/admin/helpdesk/settings/system.blade.php
Manish Verma 451e0e224b Replaced lists with pluck in views
Updated various views where lists method was being used, replaced lists with pluck to make page working.
2018-08-13 11:07:10 +05:30

189 lines
8.7 KiB
PHP

@extends('themes.default1.admin.layout.admin')
@section('Settings')
active
@stop
@section('settings-bar')
active
@stop
@section('system')
class="active"
@stop
@section('HeadInclude')
@stop
<!-- header -->
@section('PageHeader')
<h1>{{Lang::get('lang.settings')}}</h1>
@stop
<!-- /header -->
<!-- breadcrumbs -->
@section('breadcrumbs')
<ol class="breadcrumb">
</ol>
@stop
<!-- /breadcrumbs -->
<!-- content -->
@section('content')
<!-- open a form -->
{!! Form::model($systems,['url' => 'postsystem/'.$systems->id, 'method' => 'PATCH' , 'id'=>'formID']) !!}
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{{Lang::get('lang.system-settings')}}</h3>
</div>
<!-- Helpdesk Status: radio Online Offline -->
<div class="box-body">
<!-- check whether success or not -->
@if(Session::has('success'))
<div class="alert alert-success alert-dismissable">
<i class="fa fa-check-circle"></i>
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{!!Session::get('success')!!}
</div>
@endif
<!-- failure message -->
@if(Session::has('fails'))
<div class="alert alert-danger alert-dismissable">
<i class="fa fa-ban"></i><button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<b>{!! Lang::get('lang.alert') !!}!</b><br/>
<li class="error-message-padding">{!!Session::get('fails')!!}</li>
</div>
@endif
@if(Session::has('errors'))
<?php //dd($errors); ?>
<div class="alert alert-danger alert-dismissable">
<i class="fa fa-ban"></i>
<b>{!! Lang::get('lang.alert') !!}!</b>
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<br/>
@if($errors->first('user_name'))
<li class="error-message-padding">{!! $errors->first('user_name', ':message') !!}</li>
@endif
@if($errors->first('first_name'))
<li class="error-message-padding">{!! $errors->first('first_name', ':message') !!}</li>
@endif
@if($errors->first('last_name'))
<li class="error-message-padding">{!! $errors->first('last_name', ':message') !!}</li>
@endif
@if($errors->first('email'))
<li class="error-message-padding">{!! $errors->first('email', ':message') !!}</li>
@endif
</div>
@endif
<div class="row">
<!-- Helpdesk Name/Title: text Required -->
<div class="col-md-4">
<div class="form-group {{ $errors->has('name') ? 'has-error' : '' }}">
{!! Form::label('name',Lang::get('lang.name/title')) !!}
{!! $errors->first('name', '<spam class="help-block">:message</spam>') !!}
{!! Form::text('name',$systems->name,['class' => 'form-control']) !!}
</div>
</div>
<!-- Helpdesk URL: text Required -->
<div class="col-md-4">
<div class="form-group {{ $errors->has('url') ? 'has-error' : '' }}">
{!! Form::label('url',Lang::get('lang.url')) !!}
{!! $errors->first('url', '<spam class="help-block">:message</spam>') !!}
{!! Form::text('url',$systems->url,['class' => 'form-control']) !!}
</div>
</div>
<!-- Default Time Zone: Drop down: timezones table : Required -->
<div class="col-md-4">
<div class="form-group {{ $errors->has('time_zone') ? 'has-error' : '' }}">
{!! Form::label('time_zone',Lang::get('lang.timezone')) !!}
{!! $errors->first('time_zone', '<spam class="help-block">:message</spam>') !!}
{!!Form::select('time_zone',['Time Zones'=>$timezones->pluck('name','id')->toArray()],null,['class'=>'form-control']) !!}
</div>
</div>
</div>
<div class="row">
<!-- Date and Time Format: text: required: eg - 03/25/2015 7:14 am -->
<div class="col-md-4">
<div class="form-group {{ $errors->has('date_time_format') ? 'has-error' : '' }}">
{!! Form::label('date_time_format',Lang::get('lang.date_time')) !!}
{!! $errors->first('date_time_format', '<spam class="help-block">:message</spam>') !!}
{!! Form::select('date_time_format',['Date Time Formats'=>$date_time->pluck('format','id')->toArray()],null,['class' => 'form-control']) !!}
</div>
</div>
<div class="col-md-4">
<div class="form-group">
{!! Form::label('status',Lang::get('lang.status')) !!}
<div class="row">
<div class="col-xs-5">
{!! Form::radio('status','1',true) !!} {{Lang::get('lang.online')}}
</div>
<div class="col-xs-6">
{!! Form::radio('status','0') !!} {{Lang::get('lang.offline')}}
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
{!! Form::label('user_set_ticket_status',Lang::get('lang.user_set_ticket_status')) !!}
<div class="row">
<div class="col-xs-5">
<input type="radio" name="user_set_ticket_status" value="0" @if($common_setting->status == '0')checked="true" @endif>&nbsp;{{Lang::get('lang.no')}}
</div>
<div class="col-xs-6">
<input type="radio" name="user_set_ticket_status" value="1" @if($common_setting->status == '1')checked="true" @endif>&nbsp;{{Lang::get('lang.yes')}}
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4" data-toggle="tooltip" title="{!! Lang::get('lang.the_rtl_support_is_only_applicable_to_the_outgoing_mails') !!}">
<div class="form-group">
{!! Form::label('status',Lang::get('lang.rtl')) !!}
<div class="row">
<div class="col-xs-12">
<?php
$rtl = App\Model\helpdesk\Settings\CommonSettings::where('option_name', '=', 'enable_rtl')->first();
?>
<input type="checkbox" name="enable_rtl" @if($rtl->option_value == 1) checked @endif> {{Lang::get('lang.enable')}}
</div>
</div>
</div>
</div>
<div class="col-md-4" data-toggle="tooltip" title="{!! Lang::get('lang.otp_usage_info') !!}">
<div class="form-group">
{!! Form::label('send_otp',Lang::get('lang.allow_unverified_users_to_create_ticket')) !!}
<div class="row">
<div class="col-xs-5">
<input type="radio" name="send_otp" value="0" @if($send_otp->status == '0')checked="true" @endif>&nbsp;{{Lang::get('lang.yes')}}
</div>
<div class="col-xs-6">
<input type="radio" name="send_otp" value="1" @if($send_otp->status == '1')checked="true" @endif>&nbsp;{{Lang::get('lang.no')}}
</div>
</div>
</div>
</div>
<div class="col-md-4" data-toggle="tooltip" title="{!! Lang::get('lang.email_man_info') !!}">
<div class="form-group">
{!! Form::label('email_mandatory',Lang::get('lang.make-email-mandatroy')) !!}
<div class="row">
<div class="col-xs-5">
<input type="radio" name="email_mandatory" value="1" @if($email_mandatory->status == '1')checked="true" @endif>&nbsp;{{Lang::get('lang.yes')}}
</div>
<div class="col-xs-6">
<input type="radio" name="email_mandatory" value="0" @if($email_mandatory->status == '0')checked="true" @endif>&nbsp;{{Lang::get('lang.no')}}
</div>
</div>
</div>
</div>
</div>
</div>
<div class="box-footer">
{!! Form::submit(Lang::get('lang.submit'),['onclick'=>'sendForm()','class'=>'btn btn-primary'])!!}
</div>
</div>
@stop