Where can I find good infromation about almost every single function, class and ... in laravel?
I thought main documention or API documention has that data, but it seems like its just a list of functions and says what type they return, no examples, no human understanable.
Maybe I haven't found the good text resources to understand and learn laravel deeply. Excuse me.
For example I consider django docs and godot docs good documentions.
Laravel.com has all the docs that you need. The navigation bar has many topics that you can read about. I suggest starting from Getting Started and going from there. All of the topics include example code.
It wouldn't make sense to write the documentation class by class, because there would be thousands of them and you wouldn't know how they fit together. But if you need to drill into the API docs, they're available too:
Once you know php well, you can just study the actual source code to see how things are done.
There are links in the API to the source code. But some things you have to go to the Symfony source code.