Files
faveo/resources/views/themes/default1/admin/helpdesk/manage/helptopic/index.blade.php
2016-06-17 20:28:31 +05:30

138 lines
5.3 KiB
PHP

@extends('themes.default1.admin.layout.admin')
@section('Manage')
active
@stop
@section('manage-bar')
active
@stop
@section('help')
class="active"
@stop
@section('HeadInclude')
@stop
<!-- header -->
@section('PageHeader')
<h1>{{Lang::get('lang.manage')}}</h1>
@stop
<!-- /header -->
<!-- breadcrumbs -->
@section('breadcrumbs')
<ol class="breadcrumb">
</ol>
@stop
<!-- /breadcrumbs -->
<!-- content -->
@section('content')
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{{Lang::get('lang.help_topic')}}</h3>
<a href="{{route('helptopic.create')}}" class="btn btn-primary pull-right">{{Lang::get('lang.create_help_topic')}}</a>
</div>
<div class="box-body table-responsive">
<!-- 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>
<b>{!! Lang::get('lang.alert') !!} !</b>
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{!! Session::get('fails') !!}
</div>
@endif
<table class="table table-bordered dataTable">
<tr>
<th width="100px">{{Lang::get('lang.topic')}}</th>
<th width="100px">{{Lang::get('lang.status')}}</th>
<th width="100px">{{Lang::get('lang.type')}}</th>
<th width="100px">{{Lang::get('lang.priority')}}</th>
<th width="100px">{{Lang::get('lang.department')}}</th>
<th width="100px">{{Lang::get('lang.last_updated')}}</th>
<th width="100px">{{Lang::get('lang.action')}}</th>
</tr>
<?php
$default_helptopic = App\Model\helpdesk\Settings\Ticket::where('id', '=', '1')->first();
$default_helptopic = $default_helptopic->help_topic;
?>
<!-- Foreach @var$topics as @var topic -->
@foreach($topics as $topic)
<tr style="padding-bottom:-30px">
<!-- topic Name with Link to Edit page along Id -->
<td><a href="{{route('helptopic.edit',$topic->id)}}">{!! $topic->topic !!}
@if($topic->id == $default_helptopic)
( Default )
<?php
$disable = 'disabled';
?>
@else
<?php
$disable = '';
?>
@endif
</a></td>
<!-- topic Status : if status==1 active -->
<td>
@if($topic->status=='1')
<span style="color:green">{!! Lang::get('lang.active') !!}</span>
@else
<span style="color:red">{!! Lang::get('lang.disable') !!}</span>
@endif
</td>
<!-- Type -->
<td>
@if($topic->type=='1')
<span style="color:green">{!! Lang::get('lang.public') !!}</span>
@else
<span style="color:red">{!! Lang::get('lang.private') !!}</span>
@endif
</td>
<!-- Priority -->
<?php $priority = App\Model\helpdesk\Ticket\Ticket_Priority::where('priority_id', '=', $topic->priority)->first(); ?>
<td>{!! $priority->priority_desc !!}</td>
<!-- Department -->
@if($topic->department != null)
<?php
$dept = App\Model\helpdesk\Agent\Department::where('id', '=', $topic->department)->first();
$dept = $dept->name;
?>
@elseif($topic->department == null)
<?php $dept = ""; ?>
@endif
<td> {!! $dept !!} </td>
<!-- Last Updated -->
<td> {!! UTC::usertimezone($topic->updated_at) !!} </td>
<!-- Deleting Fields -->
<td>
{!! Form::open(['route'=>['helptopic.destroy', $topic->id],'method'=>'DELETE']) !!}
<a href="{{route('helptopic.edit',$topic->id)}}" class="btn btn-info btn-xs btn-flat"><i class="fa fa-trash" style="color:black;"> </i> {!! Lang::get('lang.edit') !!}</a>
<!-- To pop up a confirm Message -->
{!! Form::button('<i class="fa fa-trash" style="color:black;"> </i> '.Lang::get('lang.delete'),
['type' => 'submit',
'class'=> 'btn btn-warning btn-xs btn-flat '.$disable,
'onclick'=>'return confirm("Are you sure?")'])
!!}
</div>
{!! Form::close() !!}
</td>
@endforeach
</tr>
<!-- Set a link to Create Page -->
</table>
</div>
</div>
@stop