diff --git a/resources/views/themes/default1/admin/helpdesk/settings/alert.blade.php b/resources/views/themes/default1/admin/helpdesk/settings/alert.blade.php index 9146b7702..ae471ade2 100644 --- a/resources/views/themes/default1/admin/helpdesk/settings/alert.blade.php +++ b/resources/views/themes/default1/admin/helpdesk/settings/alert.blade.php @@ -1,17 +1,22 @@ @extends('themes.default1.admin.layout.admin') @section('Tickets') -active +class="nav-link active" @stop -@section('tickets-bar') -active +@section('ticket-menu-parent') +class="nav-item menu-open" +@stop + +@section('ticket-menu-open') +class="nav nav-treeview menu-open" @stop @section('alert') -class="active" +class="nav-link active" @stop + @section('HeadInclude') @stop @@ -30,15 +35,9 @@ class="active" @section('content') {!! Form::model($alerts,['url' => 'postalert/'.$alerts->id, 'method' => 'PATCH']) !!} -
-
-

{{Lang::get('lang.alert_notices_setitngs')}}

{!! Form::submit(Lang::get('lang.submit'),['class'=>' btn btn-primary pull-right'])!!} -
- -
@if(Session::has('success'))
- + {!!Session::get('success')!!}
@@ -46,63 +45,75 @@ class="active" @if(Session::has('fails'))
- + {!! lang::get('lang.alert') !!}!
{!!Session::get('fails')!!}
@endif -
- -
- -
-
-

{{Lang::get('lang.new_ticket_alert')}}

-
- -
-
- - {!! Form::label('ticket_status',Lang::get('lang.status').":") !!}   - {!! Form::radio('ticket_status',1) !!} {!! Lang::get('lang.enable') !!}    {!! Form::radio('ticket_status',0) !!} {!! Lang::get('lang.disable') !!} -
-
- - {!! Form::checkbox('ticket_admin_email',1) !!} - {!! Form::label('ticket_admin_email',Lang::get('lang.admin_email_2')) !!} -
- -
- {!! Form::checkbox('ticket_department_member',1) !!} - {!! Form::label('ticket_department_member',Lang::get('lang.department_members')) !!} -
-
-
- -
-
-
-
-

{{Lang::get('lang.ticket_assignment_alert')}}

-
-
- -
- {!! Form::label('assignment_status',Lang::get('lang.status').":") !!} - {!! Form::radio('assignment_status',1) !!} {!! Lang::get('lang.enable') !!}    {!! Form::radio('assignment_status',0) !!} {!! Lang::get('lang.disable') !!} -
- -
- {!! Form::checkbox('assignment_assigned_agent',1) !!} - {!! Form::label('assignment_assigned_agent',Lang::get('lang.agent')) !!} -
- -
- {!! Form::checkbox('assignment_team_member',1) !!} - {!! Form::label('assignment_team_member',Lang::get('lang.team_members')) !!} -
-
-
-
+
+
+

{{Lang::get('lang.alert_notices_setitngs')}}

+
+ +
+
+ +
+ +
+
+

{{Lang::get('lang.new_ticket_alert')}}

+
+ +
+
+ + {!! Form::label('ticket_status',Lang::get('lang.status').":") !!}   + {!! Form::radio('ticket_status',1) !!} {!! Lang::get('lang.enable') !!}    {!! Form::radio('ticket_status',0) !!} {!! Lang::get('lang.disable') !!} +
+
+ + {!! Form::checkbox('ticket_admin_email',1) !!} + {!! Form::label('ticket_admin_email',Lang::get('lang.admin_email_2')) !!} +
+ +
+ {!! Form::checkbox('ticket_department_member',1) !!} + {!! Form::label('ticket_department_member',Lang::get('lang.department_members')) !!} +
+
+
+ +
+
+
+
+

{{Lang::get('lang.ticket_assignment_alert')}}

+
+
+ +
+ {!! Form::label('assignment_status',Lang::get('lang.status').":") !!} + {!! Form::radio('assignment_status',1) !!} {!! Lang::get('lang.enable') !!}    {!! Form::radio('assignment_status',0) !!} {!! Lang::get('lang.disable') !!} +
+ +
+ {!! Form::checkbox('assignment_assigned_agent',1) !!} + {!! Form::label('assignment_assigned_agent',Lang::get('lang.agent')) !!} +
+ +
+ {!! Form::checkbox('assignment_team_member',1) !!} + {!! Form::label('assignment_team_member',Lang::get('lang.team_members')) !!} +
+
+
+
+
+
+ +
@stop diff --git a/resources/views/themes/default1/admin/helpdesk/settings/close-workflow/index.blade.php b/resources/views/themes/default1/admin/helpdesk/settings/close-workflow/index.blade.php index abd2e9fad..9606724a6 100644 --- a/resources/views/themes/default1/admin/helpdesk/settings/close-workflow/index.blade.php +++ b/resources/views/themes/default1/admin/helpdesk/settings/close-workflow/index.blade.php @@ -1,11 +1,19 @@ @extends('themes.default1.admin.layout.admin') @section('Tickets') -active +class="nav-link active" +@stop + +@section('ticket-menu-parent') +class="nav-item menu-open" +@stop + +@section('ticket-menu-open') +class="nav nav-treeview menu-open" @stop @section('close-workflow') -class="active" +class="nav-link active" @stop @section('PageHeader') @@ -16,47 +24,47 @@ class="active" @stop @section('content') -
-
-

{!! Lang::get('lang.close_ticket_workflow_settings') !!}

+ @if(Session::has('success')) +
+ + + {{Session::get('success')}} +
+@endif +@if(Session::has('failed')) +
+ + {!! Lang::get('lang.alert') !!}! + +

{{Session::get('failed')}}

+
+@endif +@if(Session::has('errors')) + +
+ + {!! Lang::get('lang.alert') !!}! + +
+ @if($errors->first('days')) +
  • {!! $errors->first('days', ':message') !!}
  • + @endif + @if($errors->first('condition')) +
  • {!! $errors->first('condition', ':message') !!}
  • + @endif + @if($errors->first('send_email')) +
  • {!! $errors->first('send_email', ':message') !!}
  • + @endif + @if($errors->first('status')) +
  • {!! $errors->first('status', ':message') !!}
  • + @endif +
    +@endif +
    +
    +

    {!! Lang::get('lang.close_ticket_workflow_settings') !!}

    -
    - @if(Session::has('success')) -
    - - - {{Session::get('success')}} -
    - @endif - @if(Session::has('failed')) -
    - - {!! Lang::get('lang.alert') !!}! - -

    {{Session::get('failed')}}

    -
    - @endif - @if(Session::has('errors')) - -
    - - {!! Lang::get('lang.alert') !!}! - -
    - @if($errors->first('days')) -
  • {!! $errors->first('days', ':message') !!}
  • - @endif - @if($errors->first('condition')) -
  • {!! $errors->first('condition', ':message') !!}
  • - @endif - @if($errors->first('send_email')) -
  • {!! $errors->first('send_email', ':message') !!}
  • - @endif - @if($errors->first('status')) -
  • {!! $errors->first('status', ':message') !!}
  • - @endif -
    - @endif +
    {!! Form::model($security,['route'=>['close-workflow.update', $security->id],'method'=>'PATCH','files' => true]) !!}
    @@ -69,24 +77,6 @@ class="active"
    -
    @@ -95,10 +85,10 @@ class="active"
    {!! Lang::get('lang.close-msg4') !!}
    -
    +
    {!! Form::radio('send_email','1') !!} {{Lang::get('lang.yes')}}
    -
    +
    {!! Form::radio('send_email','0') !!} {{Lang::get('lang.no')}}
    @@ -118,14 +108,8 @@ class="active"
    - diff --git a/resources/views/themes/default1/admin/helpdesk/settings/create-ratings.blade.php b/resources/views/themes/default1/admin/helpdesk/settings/create-ratings.blade.php index 697c8e4be..5fe3f0ac5 100644 --- a/resources/views/themes/default1/admin/helpdesk/settings/create-ratings.blade.php +++ b/resources/views/themes/default1/admin/helpdesk/settings/create-ratings.blade.php @@ -1,11 +1,19 @@ @extends('themes.default1.admin.layout.admin') @section('Tickets') -active +class="nav-link active" +@stop + +@section('ticket-menu-parent') +class="nav-item menu-open" +@stop + +@section('ticket-menu-open') +class="nav nav-treeview menu-open" @stop @section('ratings') -class="active" +class="nav-link active" @stop @section('HeadInclude') @@ -26,45 +34,45 @@ class="active" @section('content') {!! Form::open(['route'=>'rating.store']) !!} -
    -
    -

    {{Lang::get('lang.create')}}

    + @if(Session::has('success')) +
    + + + {{Session::get('success')}} +
    +@endif +@if(Session::has('errors')) + +
    + + {!! Lang::get('lang.alert') !!}! + +
    + @if($errors->first('name')) +
  • {!! $errors->first('name', ':message') !!}
  • + @endif + @if($errors->first('display_order')) +
  • {!! $errors->first('display_order', ':message') !!}
  • + @endif + @if($errors->first('rating_scale')) +
  • {!! $errors->first('rating_scale', ':message') !!}
  • + @endif + @if($errors->first('rating_area')) +
  • {!! $errors->first('rating_area', ':message') !!}
  • + @endif + @if($errors->first('restrict')) +
  • {!! $errors->first('restrict', ':message') !!}
  • + @endif + @if($errors->first('allow_modification')) +
  • {!! $errors->first('allow_modification', ':message') !!}
  • + @endif +
    +@endif +
    +
    +

    {{Lang::get('lang.create')}}

    -
    - @if(Session::has('success')) -
    - - - {{Session::get('success')}} -
    - @endif - @if(Session::has('errors')) - -
    - - {!! Lang::get('lang.alert') !!}! - -
    - @if($errors->first('name')) -
  • {!! $errors->first('name', ':message') !!}
  • - @endif - @if($errors->first('display_order')) -
  • {!! $errors->first('display_order', ':message') !!}
  • - @endif - @if($errors->first('rating_scale')) -
  • {!! $errors->first('rating_scale', ':message') !!}
  • - @endif - @if($errors->first('rating_area')) -
  • {!! $errors->first('rating_area', ':message') !!}
  • - @endif - @if($errors->first('restrict')) -
  • {!! $errors->first('restrict', ':message') !!}
  • - @endif - @if($errors->first('allow_modification')) -
  • {!! $errors->first('allow_modification', ':message') !!}
  • - @endif -
    - @endif +
    {!! Form::label('name',Lang::get('lang.rating_label')) !!}* @@ -95,16 +103,16 @@ class="active" {!! Form::label('allow_modification',Lang::get('lang.rating_change')) !!}*
    {!! Lang::get('lang.rating-msg3') !!}
    -
    +
    {!! Form::radio('allow_modification','1') !!} {{Lang::get('lang.yes')}}
    -
    +
    {!! Form::radio('allow_modification','0') !!} {{Lang::get('lang.no')}}
    - diff --git a/resources/views/themes/default1/admin/helpdesk/settings/edit-ratings.blade.php b/resources/views/themes/default1/admin/helpdesk/settings/edit-ratings.blade.php index 030c0bf66..768e8d732 100644 --- a/resources/views/themes/default1/admin/helpdesk/settings/edit-ratings.blade.php +++ b/resources/views/themes/default1/admin/helpdesk/settings/edit-ratings.blade.php @@ -1,11 +1,19 @@ @extends('themes.default1.admin.layout.admin') @section('Tickets') -active +class="nav-link active" +@stop + +@section('ticket-menu-parent') +class="nav-item menu-open" +@stop + +@section('ticket-menu-open') +class="nav nav-treeview menu-open" @stop @section('ratings') -class="active" +class="nav-link active" @stop @section('HeadInclude') @@ -18,46 +26,46 @@ class="active" @section('content') -{!! Form::model($rating,['route'=>['settings.rating', $rating->id],'method'=>'PATCH','files' => true]) !!} -
    -
    -

    {{Lang::get('lang.edit')}}

    +{!! Form::model($rating,['route'=>['settings.rating', $rating->id],'method'=>'PATCH','files' => true]) !!} +@if(Session::has('success')) +
    + + + {{Session::get('success')}} +
    +@endif +@if(Session::has('errors')) + +
    + + {!! Lang::get('lang.alert') !!}! + +
    + @if($errors->first('name')) +
  • {!! $errors->first('name', ':message') !!}
  • + @endif + @if($errors->first('display_order')) +
  • {!! $errors->first('display_order', ':message') !!}
  • + @endif + @if($errors->first('rating_scale')) +
  • {!! $errors->first('rating_scale', ':message') !!}
  • + @endif + @if($errors->first('rating_area')) +
  • {!! $errors->first('rating_area', ':message') !!}
  • + @endif + @if($errors->first('restrict')) +
  • {!! $errors->first('restrict', ':message') !!}
  • + @endif + @if($errors->first('allow_modification')) +
  • {!! $errors->first('allow_modification', ':message') !!}
  • + @endif +
    +@endif +
    +
    +

    {{Lang::get('lang.edit')}}

    -
    - @if(Session::has('success')) -
    - - - {{Session::get('success')}} -
    - @endif - @if(Session::has('errors')) - -
    - - {!! Lang::get('lang.alert') !!}! - -
    - @if($errors->first('name')) -
  • {!! $errors->first('name', ':message') !!}
  • - @endif - @if($errors->first('display_order')) -
  • {!! $errors->first('display_order', ':message') !!}
  • - @endif - @if($errors->first('rating_scale')) -
  • {!! $errors->first('rating_scale', ':message') !!}
  • - @endif - @if($errors->first('rating_area')) -
  • {!! $errors->first('rating_area', ':message') !!}
  • - @endif - @if($errors->first('restrict')) -
  • {!! $errors->first('restrict', ':message') !!}
  • - @endif - @if($errors->first('allow_modification')) -
  • {!! $errors->first('allow_modification', ':message') !!}
  • - @endif -
    - @endif +
    {!! Form::label('name',Lang::get('lang.rating_label')) !!}* @@ -88,16 +96,16 @@ class="active" {!! Form::label('allow_modification',Lang::get('lang.rating_change')) !!}*
    {!! Lang::get('lang.rating-msg3') !!}
    -
    +
    {!! Form::radio('allow_modification','1') !!} {{Lang::get('lang.yes')}}
    -
    +
    {!! Form::radio('allow_modification','0') !!} {{Lang::get('lang.no')}}
    - diff --git a/resources/views/themes/default1/admin/helpdesk/settings/ratings.blade.php b/resources/views/themes/default1/admin/helpdesk/settings/ratings.blade.php index 68d424de4..403fb6b58 100644 --- a/resources/views/themes/default1/admin/helpdesk/settings/ratings.blade.php +++ b/resources/views/themes/default1/admin/helpdesk/settings/ratings.blade.php @@ -1,11 +1,19 @@ @extends('themes.default1.admin.layout.admin') @section('Tickets') -active +class="nav-link active" +@stop + +@section('ticket-menu-parent') +class="nav-item menu-open" +@stop + +@section('ticket-menu-open') +class="nav nav-treeview menu-open" @stop @section('ratings') -class="active" +class="nav-link active" @stop @section('PageHeader') @@ -16,22 +24,22 @@ class="active" @stop @section('content') -
    -
    -

    {!! Lang::get('lang.current_ratings') !!}

    -
    -
    - -
    +@if(Session::has('success')) +
    + + {{Session::get('success')}} +
    +@endif +
    +
    +

    {!! Lang::get('lang.current_ratings') !!}

    +
    -
    - @if(Session::has('success')) -
    - -

    {{Session::get('success')}}

    -
    - @endif +
    @@ -48,20 +56,20 @@ class="active"
    {!! $rating->display_order !!} {!! $rating->rating_area !!} - {!! link_to_route('rating.edit','Edit Ratings',[$rating->id],['class'=>'btn btn-info btn-sm']) !!} - -