Usage
To store emails from the coming soon page in the database, you can use the following code.ComingSoonController.php
coming_soon_emails table and be accessible via the Admin Panel.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to store emails from coming soon page in the database.
public function store(ComingSoonRequest $request)
{
$comingSoonEmail = ComingSoonEmail::create($request->validated());
return response()->success($comingSoonEmail, 201);
}
coming_soon_emails table and be accessible via the Admin Panel.