Running test command: php artisan tinker --execute=" $user = new App\Models\User(); $user->name = 'Test Phone User'; $user->email = 'testphone1765272548@example.com'; $user->phone_number = '+1234563808'; $user->password = bcrypt('password123'); $user->save(); // Get the user back and display it $savedUser = App\Models\User::where('email', $user->email)->first(); echo 'User created with ID: ' . $savedUser->id . ' '; echo 'Name: ' . $savedUser->name . ' '; echo 'Email: ' . $savedUser->email . ' '; echo 'Phone: ' . $savedUser->phone_number . ' '; " UnexpectedValueException There is no existing directory at "/var/www/zuppi-api/storage/logs" and it could not be created: Permission denied at vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:241 237▕ }); 238▕ $status = mkdir($dir, 0777, true); 239▕ restore_error_handler(); 240▕ if (false === $status && !is_dir($dir) && strpos((string) $this->errorMessage, 'File exists') === false) { ➜ 241▕ throw new \UnexpectedValueException(sprintf('There is no existing directory at "%s" and it could not be created: '.$this->errorMessage, $dir)); 242▕ } 243▕ } 244▕ $this->dirCreated = true; 245▕ } +13 vendor frames  14 artisan:16 Illuminate\Foundation\Application::handleCommand(Object(Symfony\Component\Console\Input\ArgvInput))