124 lines
3.9 KiB
PHP
124 lines
3.9 KiB
PHP
@extends('themes.default1.admin.layout.admin')
|
|
|
|
@section('Emails')
|
|
class="active"
|
|
@stop
|
|
|
|
@section('emails-bar')
|
|
active
|
|
@stop
|
|
|
|
@section('emails')
|
|
class="active"
|
|
@stop
|
|
|
|
@section('HeadInclude')
|
|
@stop
|
|
<!-- header -->
|
|
@section('PageHeader')
|
|
|
|
@stop
|
|
<!-- /header -->
|
|
<!-- breadcrumbs -->
|
|
@section('breadcrumbs')
|
|
<ol class="breadcrumb">
|
|
|
|
</ol>
|
|
@stop
|
|
<!-- /breadcrumbs -->
|
|
<!-- content -->
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-primary">
|
|
<div class="box-header">
|
|
<h2 class="box-title">{!! Lang::get('lang.emails') !!}</h2><a href="{{route('emails.create')}}" class="btn btn-primary pull-right">{{Lang::get('lang.create_email')}}</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>
|
|
<b>Success!</b>
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</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">×</button>
|
|
{{Session::get('fails')}}
|
|
</div>
|
|
@endif
|
|
|
|
<?php
|
|
$default_system_email = App\Model\helpdesk\Settings\Email::where('id', '=', '1')->first();
|
|
if($default_system_email->sys_email) {
|
|
$default_email = $default_system_email->sys_email;
|
|
} else {
|
|
$default_email = null;
|
|
}
|
|
?>
|
|
<!-- table -->
|
|
<table class="table table-bordered dataTable" style="overflow:hidden;">
|
|
<tr>
|
|
<th width="100px">{{Lang::get('lang.email')}}</th>
|
|
<th width="100px">{{Lang::get('lang.priority')}}</th>
|
|
<th width="100px">{{Lang::get('lang.department')}}</th>
|
|
<th width="100px">{{Lang::get('lang.created')}}</th>
|
|
<th width="100px">{{Lang::get('lang.last_updated')}}</th>
|
|
<th width="100px">{{Lang::get('lang.action')}}</th>
|
|
</tr>
|
|
@foreach($emails as $email)
|
|
<tr>
|
|
|
|
<td><a href="{{route('emails.edit', $email->id)}}"> {{$email -> email_address }}</a>
|
|
@if($default_email == $email->id)
|
|
( Default )
|
|
<?php $disabled = 'disabled'; ?>
|
|
@else
|
|
<?php $disabled = ''; ?>
|
|
@endif
|
|
</td>
|
|
<?php $priority = App\Model\helpdesk\Ticket\Ticket_Priority::where('priority_id','=',$email->priority)->first(); ?>
|
|
@if($email->priority == null)
|
|
<?php $priority = "<a href=". url('getticket') .">System Default</a>"; ?>
|
|
@else
|
|
<?php $priority = ucfirst($priority->priority_desc); ?>
|
|
@endif
|
|
<td>{!! $priority !!}</td>
|
|
@if($email->department !== null)
|
|
<?php $department = App\Model\helpdesk\Agent\Department::where('id','=',$email->department)->first();
|
|
$dept = $department->name; ?>
|
|
@elseif($email->department == null)
|
|
<?php $dept = "<a href=". url('getsystem') .">System Default</a>"; ?>
|
|
@endif
|
|
|
|
<td>{!! $dept !!}</td>
|
|
<td>{!! UTC::usertimezone($email->created_at) !!}</td>
|
|
<td>{!! UTC::usertimezone($email->updated_at) !!}</td>
|
|
<td>
|
|
{!! Form::open(['route'=>['emails.destroy', $email->id],'method'=>'DELETE']) !!}
|
|
<a href="{{route('emails.edit', $email->id)}}" class="btn btn-info btn-xs btn-flat"><i class="fa fa-edit" style="color:black;"> </i> Edit</a>
|
|
<!-- To pop up a confirm Message -->
|
|
{!! Form::button('<i class="fa fa-trash" style="color:black;"> </i> Delete',
|
|
['type' => 'submit',
|
|
'class'=> 'btn btn-warning btn-xs btn-flat '. $disabled,
|
|
'onclick'=>'return confirm("Are you sure?")'])
|
|
!!}
|
|
{!! Form::close() !!}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@stop
|