Files
faveo/resources/views/themes/default1/admin/helpdesk/settings/responder.blade.php
2015-12-22 14:09:23 +05:30

111 lines
3.0 KiB
PHP

@extends('themes.default1.admin.layout.admin')
@section('Settings')
class="active"
@stop
@section('settings-bar')
active
@stop
@section('auto-response')
class="active"
@stop
@section('HeadInclude')
@stop
<!-- header -->
@section('PageHeader')
@stop
<!-- /header -->
<!-- breadcrumbs -->
@section('breadcrumbs')
<ol class="breadcrumb">
</ol>
@stop
<!-- /breadcrumbs -->
<!-- content -->
@section('content')
<!-- open a form -->
{!! Form::model($responders,['url' => 'postresponder/'.$responders->id, 'method' => 'PATCH']) !!}
<div class="row">
<div class="col-md-12">
<div class="box box-primary">
<div class="box-header">
<h3 class="box-title">{{Lang::get('lang.auto_responce')}}</h3> <div class="pull-right">
{!! Form::submit(Lang::get('lang.save'),['class'=>'btn btn-primary'])!!}
</div>
</div>
<!-- check whether success or not -->
@if(Session::has('success'))
<div class="alert alert-success alert-dismissable">
<i class="fa fa-check-circle"></i>
<b>Success!</b>
<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>
<b>Fail!</b>
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{{Session::get('fails')}}
</div>
@endif
<!-- New Ticket: CHECKBOX Ticket Owner -->
<div class="box-body table-responsive"style="overflow:hidden;">
<div class="form-group">
{!! Form::checkbox('new_ticket',1) !!} &nbsp;
{!! Form::label('new_ticket',Lang::get('lang.new_ticket')) !!}
</div>
<!-- New Ticket by Agent: CHECKBOX Ticket Owner -->
<div class="form-group">
{!! Form::checkbox('agent_new_ticket',1) !!}&nbsp;
{!! Form::label('agent_new_ticket',Lang::get('lang.new_ticket_by_agent')) !!}
</div>
<!-- New Message:
Submitter: CHECKBOX Send receipt confirmation
Participants: CHECKBOX Send new activity notice -->
{{-- <div class="form-group"> --}}
{{-- {!! Form::label('new_message',Lang::get('lang.new_message')) !!}<br> --}}
{{-- {!! Form::checkbox('submitter',1,true) !!}&nbsp;{{Lang::get('lang.submitter')}}&nbsp;{{Lang::get('lang.send_receipt_confirmation')}}&nbsp;&nbsp;&nbsp;<p><p> --}}
{{-- {!! Form::checkbox('participants',1) !!}&nbsp;{{Lang::get('lang.participants')}}&nbsp;{{Lang::get('lang.send_new_activity_notice')}} --}}
{{-- </div> --}}
<!-- Overlimit Notice: CHECKBOX Ticket Submitter -->
{{-- <div class="form-group"> --}}
{{-- {!! Form::checkbox('overlimit',1) !!}&nbsp; --}}
{{-- {!! Form::label('overlimit',Lang::get('lang.overlimit_notice')) !!} --}}
{{-- </div> --}}
</div>
</div>
</div>
</div>
@stop
</div><!-- /.box -->
@section('FooterInclude')
@stop
@stop
<!-- /content -->