Wallogit.com
2017 © Pedro Peláez
Hello World
Run the composer require command:, (*1)
compsoer require sasaya/helloworld
Append Sasaya Hello World service provider to providers array in config/app.php., (*2)
'providers' => [
/*
* Laravel Framework Service Providers...
*/
Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
...
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
...
/*
* Sasaya Service Providers...
*/
Sasaya\HelloWorld\Providers\ServiceProvider::class,
],
Run the artisan command:, (*3)
php artisan serve
Then we can open a browser and type http://localhost:8000 and we would see Hello World., (*4)