Skip to content
This repository has been archived by the owner on Mar 4, 2023. It is now read-only.
/ homestead Public archive
forked from laravel/homestead

The official Laravel local development environment.

Notifications You must be signed in to change notification settings

Bagaar/homestead

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Homestead

The official Laravel local development environment.

Official documentation is located here.

Mailcatcher setup

This homestead image also installs Mailcatcher for easy mail delivery during local development.

To activate Mailcatcher in your laravel app

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.

About

The official Laravel local development environment.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 72.7%
  • Shell 27.3%