diff --git a/config/filesystem.php b/config/filesystem.php index 47269b0..e3a9335 100644 --- a/config/filesystem.php +++ b/config/filesystem.php @@ -9,7 +9,7 @@ return [ 'disks' => [ 'local' => [ 'type' => 'local', - 'root' => app()->getRootPath() . 'public/images', + 'root' => app()->getRootPath() . 'public'.DIRECTORY_SEPARATOR.'images', 'domain' => env('API_URL'), ], 'public' => [ diff --git a/config/jwt.php b/config/jwt.php index 04ffac4..6552b60 100644 --- a/config/jwt.php +++ b/config/jwt.php @@ -14,5 +14,5 @@ return [ //JWT hashing algorithm 'algo' => env('JWT_ALGO', 'HS256'), - 'blacklist_storage' => thans\jwt\provider\storage\Tp5::class, + 'blacklist_storage' => thans\jwt\provider\storage\Tp6::class, ];