help desk create view

This commit is contained in:
merdan 2020-05-01 16:06:04 +05:00
parent d6f8bcdf49
commit f13851f80e
3 changed files with 2 additions and 4 deletions

View File

@ -15,7 +15,7 @@ class HelpTicketCommentRequest extends FormRequest
public function authorize()
{
// only allow updates if the user is logged in
return backpack_auth()->check();
return true;//backpack_auth()->check();
}
/**

View File

@ -15,7 +15,7 @@ class HelpTicketRequest extends FormRequest
public function authorize()
{
// only allow updates if the user is logged in
return backpack_auth()->check();
return true;//backpack_auth()->check();
}
/**

View File

@ -1,7 +1,5 @@
<?php
Route::group(
[
'prefix' => LaravelLocalization::setLocale(),