The official Laravel local development environment.
Official documentation is located here.
This homestead image also installs Mailcatcher for easy mail delivery during local development.
Create app/config/local/mail.php
and add the following:
<?php
// mailcatcher setup
return array(
'driver' => 'smtp',
'host' => 'localhost',
'port' => 1025,
'encryption' => '',
'from' => array('address' => '[email protected]', 'name' => 'Sender')
);
Open up a browser pointing to your homestead box ip and port 10800 (f.e. http://site.dev:10800/) and you have an instant inbox to all mail sent from your app.