Files
faveo/resources/views/themes/default1/admin/helpdesk/settings/status.blade.php
Manish Verma 21f783f72b Bug fix update
Fix register page issue

Removed dynamicity in statuses

Removed dynamic status creation and deletion as system does not perform status change functionality correctly accordingly. The feature will only be available in premium versions.

Bug fix in ticket reply from agent panel

Bug fixed in assignment from new inbox
2018-08-15 16:19:56 +05:30

66 lines
2.1 KiB
PHP

@extends('themes.default1.admin.layout.admin')
@section('Tickets')
active
@stop
@section('status')
class="active"
@stop
@section('PageHeader')
<h1>{!! Lang::get('lang.settings') !!}</h1>
@stop
@section('breadcrumbs')
<ol class="breadcrumb">
</ol>
@stop
@section('content')
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{!! Lang::get('lang.list_of_status') !!}</h3>
</div><!-- /.box-header -->
<div class="box-body">
@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
@if(Session::has('failed'))
<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>
<p>{{Session::get('failed')}}</p>
</div>
@endif
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>{!! Lang::get('lang.name') !!}</th>
<th>{!! Lang::get('lang.display_order') !!}</th>
<th>{!! Lang::get('lang.action') !!}</th>
</tr>
</thead>
<tbody>
@foreach($statuss as $status)
<?php if ($status->name == 'Deleted') continue; ?>
<tr>
<td>{!! $status->name !!}</td>
<td>{!! $status->sort !!}</td>
<td>
<a href="{!! route('status.edit',$status->id) !!}"><button class="btn btn-info btn-sm">{!! Lang::get('lang.edit_details') !!}</button></a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div><!-- /.box-body -->
</div>
@stop