diff --git a/app/Http/routes.php b/app/Http/routes.php
index 36eeb2a9d..09322df2f 100644
--- a/app/Http/routes.php
+++ b/app/Http/routes.php
@@ -517,25 +517,25 @@ Route::get('notification', ['as' => 'notification', 'uses' => 'Agent\helpdesk\No
| View all the Routes
|=============================================================
*/
-Route::get('/aaa', function () {
- $routeCollection = Route::getRoutes();
- echo "
";
- echo '';
- echo "HTTP Method | ";
- echo "Route | ";
- echo "Url | ";
- echo "Corresponding Action | ";
- echo '
';
- foreach ($routeCollection as $value) {
- echo '';
- echo ''.$value->getMethods()[0].' | ';
- echo ''.$value->getName().' | ';
- echo ''.$value->getPath().' | ';
- echo ''.$value->getActionName().' | ';
- echo '
';
- }
- echo '
';
-});
+// Route::get('/aaa', function () {
+// $routeCollection = Route::getRoutes();
+// echo "";
+// echo '';
+// echo "HTTP Method | ";
+// echo "Route | ";
+// echo "Url | ";
+// echo "Corresponding Action | ";
+// echo '
';
+// foreach ($routeCollection as $value) {
+// echo '';
+// echo ''.$value->getMethods()[0].' | ';
+// echo ''.$value->getName().' | ';
+// echo ''.$value->getPath().' | ';
+// echo ''.$value->getActionName().' | ';
+// echo '
';
+// }
+// echo '
';
+// });
/*
|=============================================================
diff --git a/config/app.php b/config/app.php
index 52a450f2d..feeb9d77f 100644
--- a/config/app.php
+++ b/config/app.php
@@ -38,7 +38,7 @@ return [
|
*/
- 'version' => 'Community 1.0.7.3',
+ 'version' => 'Community 1.0.7.4',
/*
|--------------------------------------------------------------------------
diff --git a/resources/views/themes/default1/admin/helpdesk/emails/emails/create.blade.php b/resources/views/themes/default1/admin/helpdesk/emails/emails/create.blade.php
index 7463576bd..3edd347e3 100644
--- a/resources/views/themes/default1/admin/helpdesk/emails/emails/create.blade.php
+++ b/resources/views/themes/default1/admin/helpdesk/emails/emails/create.blade.php
@@ -72,19 +72,19 @@ class="active"
{!! Form::label('department',Lang::get('lang.department')) !!}
{!! $errors->first('department', ':message') !!}
- {!!Form::select('department', [''=>'--System Default--','departments'=>$departments->lists('name','id')],null,['class' => 'form-control select', 'id' => 'department' ]) !!}
+ {!!Form::select('department', [''=>'--System Default--','departments'=>$departments->lists('name','id')->toArray()],null,['class' => 'form-control select', 'id' => 'department' ]) !!}
{!! Form::label('priority',Lang::get('lang.priority')) !!}
{!! $errors->first('priority', ':message') !!}
- {!!Form::select('priority', [''=>'--System Default--','Priorities'=>$priority->lists('priority_desc','priority_id')],null,['class' => 'form-control select', 'id' => 'priority']) !!}
+ {!!Form::select('priority', [''=>'--System Default--','Priorities'=>$priority->lists('priority_desc','priority_id')->toArray()],null,['class' => 'form-control select', 'id' => 'priority']) !!}
{!! Form::label('help_topic',Lang::get('lang.help_topic')) !!}
{!! $errors->first('help_topic', ':message') !!}
- {!!Form::select('help_topic', [''=>'--System Default--','Help Topics'=>$helps->lists('topic','id')],null,['class' => 'form-control select', 'id' => 'help_topic']) !!}
+ {!!Form::select('help_topic', [''=>'--System Default--','Help Topics'=>$helps->lists('topic','id')->toArray()],null,['class' => 'form-control select', 'id' => 'help_topic']) !!}
diff --git a/resources/views/themes/default1/admin/helpdesk/emails/emails/edit.blade.php b/resources/views/themes/default1/admin/helpdesk/emails/emails/edit.blade.php
index e38914a6f..ae5bec358 100644
--- a/resources/views/themes/default1/admin/helpdesk/emails/emails/edit.blade.php
+++ b/resources/views/themes/default1/admin/helpdesk/emails/emails/edit.blade.php
@@ -75,19 +75,19 @@ class="active"
{!! Form::label('department',Lang::get('lang.department')) !!}
{!! $errors->first('department', ':message') !!}
- {!!Form::select('department', [''=>'--System Default--','departments'=>$departments->lists('name','id')],null,['class' => 'form-control select']) !!}
+ {!!Form::select('department', [''=>'--System Default--','departments'=>$departments->lists('name','id')->toArray()],null,['class' => 'form-control select']) !!}
{!! Form::label('priority',Lang::get('lang.priority')) !!}
{!! $errors->first('priority', ':message') !!}
- {!!Form::select('priority', [''=>'--System Default--','Priorities'=>$priority->lists('priority_desc','priority_id')],null,['class' => 'form-control select']) !!}
+ {!!Form::select('priority', [''=>'--System Default--','Priorities'=>$priority->lists('priority_desc','priority_id')->toArray()],null,['class' => 'form-control select']) !!}
{!! Form::label('help_topic',Lang::get('lang.help_topic')) !!}
{!! $errors->first('help_topic', ':message') !!}
- {!!Form::select('help_topic', [''=>'--System Default--','Help Topics'=>$helps->lists('topic','id')],null,['class' => 'form-control select']) !!}
+ {!!Form::select('help_topic', [''=>'--System Default--','Help Topics'=>$helps->lists('topic','id')->toArray()],null,['class' => 'form-control select']) !!}