Laravel File system auth
I try build a Laravel authentication application that is based on file system storage and in database based way parallel. I made a method, like this: private function fileAuth(array $credentials): void { $userFileName = config('backup_values.backup_path') . $credentials['email'] . '.json'; $user…