Читаю документацию Laravel
Signed URLs
Laravel allows you to easily create "signed" URLs to named routes. These URLs have a "signature" hash appended to the query string which allows Laravel to verify that the URL has not been modified since it was created. Signed URLs are especially useful for routes that are publicly accessible yet need a layer of protection against URL manipulation.
For example, you might use signed URLs to implement a public "unsubscribe" link that is emailed to your customers.
Signed URLs позволяют Ларавел контролировать , что URL не модифицировался с момента создания. Они особенно полезны для роутов которые пока публично доступны и нуждаются в защите против URL манипуляции.
Подскажите пожалуйста, что все это означает и как этим пользоваться?