algo seas
- Read more about algo seas
- Log in to post comments
Algorand Ecosystem
- Read more about Algorand Ecosystem
- Log in to post comments
Games on Algorand
getting started on algoseas
this is an idle game and I am loving it
- connect wallet like perawallet
- buy coin
- mint a pirate
NFT marketplace
Create a Contact Us for in Laravel 9
- Read more about Create a Contact Us for in Laravel 9
- Log in to post comments
Add routes to enable GET & POST requests
Set up the routes in routes > web.php to render the contact page via a GET request and send mails via the POST request (which has been specified in the form attribute above).
Route::get('/contact', 'PageController@contact')->name('contact');
Route::post('/contact', 'PageController@sendContactMail')->name('contact.send');
The Enchiridion
Book Image

Laravel a Better Way to send emails
- Read more about Laravel a Better Way to send emails
- Log in to post comments
php artisan make:mail SendFriend
creates a file at app/Mail/SendFriend.php
It should look something like this