-
-
Notifications
You must be signed in to change notification settings - Fork 384
Closed
Labels
Description
When i try to translate the error message i get errors. How would i accomplish this.
<?php
return [
/*
|--------------------------------------------------------------------------
| Laratrust Middleware
|--------------------------------------------------------------------------
|
| This configuration helps to customize the Laratrust middleware behavior.
|
*/
'middleware' => [
'register' => true,
'handling' => 'abort',
'handlers' => [
'abort' => [
'code' => 403,
'message' => '', // Translation functions do not work in the configuration files.
],
'redirect' => [
'url' => '/home',
'message' => [
'key' => 'error',
'content' => '',
]
]
]
],
];
?>