> ## Documentation Index
> Fetch the complete documentation index at: https://docs.larafast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Coming Soon Page

> How to store emails from coming soon page in the database.

## Usage

To store emails from the coming soon page in the database, you can use the following code.

```php ComingSoonController.php theme={null}
public function store(ComingSoonRequest $request)
{
    $comingSoonEmail = ComingSoonEmail::create($request->validated());

    return response()->success($comingSoonEmail, 201);
}
```

Data will be stored in the `coming_soon_emails` table and be accessible via the Admin Panel.
