Cookie

screenshot of Cookie

[READ ONLY] Subtree split of the Illuminate Cookie component (see laravel/framework)

## Overview
The Cookie component from the Illuminate framework offers a robust solution for managing HTTP cookies in web applications. As part of Laravel's broader ecosystem, this component is essential for any developer looking to handle cookies efficiently and securely.

## Features
- **Easy Management**: Provides straightforward methods for setting, retrieving, and deleting cookies, making it simple to integrate cookie functionality in your applications.
- **Secure Handling**: Supports secure cookies and provides options to enforce HTTP-only flags, ensuring that sensitive data is protected from cross-site scripting attacks.
- **Customizable Options**: Allows for customization of cookie attributes such as expiration time, path, and domain, giving developers full control over cookie behavior.
- **Serialization Support**: Offers an easy way to serialize and unserialize complex data structures, enabling the storage of arrays and objects in cookies.
- **Integration with Laravel**: Seamlessly integrates with other Laravel components, providing a consistent and cohesive developer experience.
- **Testing Utilities**: Includes testing helpers that make it easier to mock and assert cookie-related functionality during unit testing.